function sbp_test_menu in Search by Page 6
Same name and namespace in other branches
- 7 tests/sbp_test.module \sbp_test_menu()
Implementation of hook_menu().
Sets up pages that can be rendered and searched.
File
- tests/
sbp_test.module, line 174 - Module file for Search by Page testing.
Code
function sbp_test_menu() {
$items = array();
$items['sbp_test_priv_page'] = array(
'title' => 'Search by Page private page',
'description' => 'Test content',
'page callback' => 'sbp_test_make_priv_page',
'access arguments' => array(
'view test private content',
),
'type' => MENU_SUGGESTED_ITEM,
);
$items['sbp_test_pub_page'] = array(
'title' => 'Search by Page public page',
'description' => 'Test content',
'page callback' => 'sbp_test_make_pub_page',
'access arguments' => array(
'access content',
),
'type' => MENU_SUGGESTED_ITEM,
);
$items['sbp_test_another_page'] = array(
'title' => 'Search by Page another Page',
'description' => 'Test content',
'page callback' => 'sbp_test_make_another_page',
'access arguments' => array(
'access content',
),
'type' => MENU_SUGGESTED_ITEM,
);
$items['sbp_test_queried_page'] = array(
'title' => 'Search by Page queried Page',
'description' => 'Test content',
'page callback' => 'sbp_test_make_queried_page',
'access arguments' => array(
'access content',
),
'type' => MENU_SUGGESTED_ITEM,
);
$items['sbp_test_exclude_page'] = array(
'title' => 'Search by Page exclude Page',
'description' => 'Test content',
'page callback' => 'sbp_test_make_exclude_page',
'access arguments' => array(
'access content',
),
'type' => MENU_SUGGESTED_ITEM,
);
$items['sbp_test_output_page'] = array(
'title' => 'Search by Page output Page',
'description' => 'Test content',
'page callback' => 'sbp_test_make_output_page',
'access arguments' => array(
'access content',
),
'type' => MENU_SUGGESTED_ITEM,
);
return $items;
}