function filefield_paths_menu in File (Field) Paths 7
Implements hook_menu().
File
- ./
filefield_paths.module, line 22 - Contains core functions for the File (Field) Paths module.
Code
function filefield_paths_menu() {
$items['admin/config/media/file-system/filefield-paths'] = array(
'title' => t('File (Field) Paths settings'),
'page callback' => 'drupal_get_form',
'page arguments' => array(
'filefield_paths_settings_form',
),
'access arguments' => array(
'administer site configuration',
),
'type' => MENU_NORMAL_ITEM,
'file' => 'filefield_paths.admin.inc',
);
return $items;
}