You are here

function fe_paths_config_edit_page in File Entity Paths 7.2

Page callback for configuration edit page.

Parameters

$config:

Return value

array|mixed

1 string reference to 'fe_paths_config_edit_page'
fe_paths_menu in ./fe_paths.module
Implements hook_menu().

File

./fe_paths.admin.inc, line 441
Admin ui for the File Entity Paths module.

Code

function fe_paths_config_edit_page($config) {
  $build = drupal_get_form('fe_paths_entity_edit_form', $config);
  return $build;
}