You are here

function fe_paths_global_page in File Entity Paths 7.2

Page callback for admin/config/media/fe-paths page.

Return value

array

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

File

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

Code

function fe_paths_global_page() {
  $configs = fe_paths_config_load_multiple();
  $build = array();
  $build['config_form'] = drupal_get_form('fe_paths_config_table_form', $configs);
  $build['global_form'] = drupal_get_form('fe_paths_admin_form');
  return $build;
}