You are here

function pagerer_example_menu in Pagerer 7

Implements hook_menu().

File

./pagerer_example.module, line 17
Pagerer example

Code

function pagerer_example_menu() {
  $items['pagerer/example'] = array(
    'title' => 'Pagerer example',
    'description' => 'Display various combinations of Pagerer themes.',
    'page callback' => 'pagerer_example_page',
    'access callback' => TRUE,
  );
  return $items;
}