archive_menu
- Versions
- 4.6 – 4.7
archive_menu($may_cache)
Implementation of hook_menu().
Code
modules/archive.module, line 200
<?php
function archive_menu($may_cache) {
$items = array();
if ($may_cache) {
$items[] = array('path' => 'archive', 'title' => t('archives'),
'access' => user_access('access content'),
'callback' => 'archive_page',
'type' => MENU_SUGGESTED_ITEM);
}
return $items;
}
?>Login or register to post comments 