1 theming_example.module | theming_example_menu() |
Implements hook_menu().
The Menu Example module provides extensive examples for hook_menu().
Related topics
File
- modules/
examples/ theming_example/ theming_example.module, line 62 - Hook implementations for the Theming Example module.
Code
function theming_example_menu() {
$items['examples/theming_example'] = array(
'title' => 'Theming Example',
'description' => 'Some theming examples.',
'page callback' => 'theming_example_page',
'access callback' => TRUE,
'access arguments' => array('access content'),
);
$items['examples/theming_example/theming_example_list_page'] = array(
'title' => 'Theming a list',
'page callback' => 'theming_example_list_page',
'access arguments' => array('access content'),
'weight' => 1,
);
$items['examples/theming_example/theming_example_select_form'] = array(
'title' => 'Theming a form (select form)',
'page callback' => 'backdrop_get_form',
'page arguments' => array('theming_example_select_form'),
'access arguments' => array('access content'),
'weight' => 2,
);
$items['examples/theming_example/theming_example_text_form'] = array(
'title' => 'Theming a form (text form)',
'page callback' => 'backdrop_get_form',
'page arguments' => array('theming_example_text_form'),
'access arguments' => array('access content'),
'weight' => 3,
);
return $items;
}