function spaces_customtext_menu in Spaces 7
Same name and namespace in other branches
- 6.3 spaces_customtext/spaces_customtext.module \spaces_customtext_menu()
- 7.3 spaces_customtext/spaces_customtext.module \spaces_customtext_menu()
Implements hook_menu().
File
- spaces_customtext/
spaces_customtext.module, line 112 - Spaces Custom Text.
Code
function spaces_customtext_menu() {
return array(
'features/customtext/%' => array(
'access callback' => 'spaces_customtext_menu_access',
'access arguments' => array(),
'file' => 'spaces_customtext.admin.inc',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'spaces_customtext_settings_form',
2,
),
'title' => 'Settings',
'type' => MENU_CALLBACK,
),
);
}