function zenophile_menu in Zenophile 7
Same name and namespace in other branches
- 6.2 zenophile.module \zenophile_menu()
- 6 zenophile.module \zenophile_menu()
Implements hook_menu().
File
- ./
zenophile.module, line 31 - Creates Zen subthemes quickly and easily.
Code
function zenophile_menu() {
return array(
'admin/appearance/zenophile' => array(
'title' => 'Create Zen subtheme',
'description' => 'Quickly create a Zen subtheme for theming.',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'zenophile_create',
),
'access arguments' => array(
'create zen theme with zenophile',
),
'type' => MENU_LOCAL_TASK,
// Put the tab all the way on the end
'weight' => 100,
),
);
}