function aggregator_test_menu
Implements hook_menu().
File
-
modules/
aggregator/ tests/ aggregator_test.module, line 6
Code
function aggregator_test_menu() {
$items['aggregator/test-feed'] = array(
'title' => 'Test feed static last modified date',
'description' => "A cached test feed with a static last modified date.",
'page callback' => 'aggregator_test_feed',
'access arguments' => array(
'access content',
),
'type' => MENU_CALLBACK,
);
return $items;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.