You are here

function advagg_relocate_menu in Advanced CSS/JS Aggregation 7.2

Implements hook_menu().

File

advagg_relocate/advagg_relocate.module, line 157
Advanced aggregation relocate module.

Code

function advagg_relocate_menu() {
  $file_path = drupal_get_path('module', 'advagg_relocate');
  $config_path = advagg_admin_config_root_path();
  $items[$config_path . '/advagg/relocate'] = array(
    'title' => 'Relocate',
    'description' => 'Move external items to be local.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'advagg_relocate_admin_settings_form',
    ),
    'type' => MENU_LOCAL_TASK,
    'access arguments' => array(
      'administer site configuration',
    ),
    'file path' => $file_path,
    'file' => 'advagg_relocate.admin.inc',
    'weight' => 10,
  );
  return $items;
}