You are here

function blocks404_menu in 404 Blocks 5

Implements hook_menu().

File

./blocks404.module, line 20

Code

function blocks404_menu($may_cache) {
  $items = array();
  if ($may_cache) {
    $items[] = array(
      'path' => BLOCKS404_PAGE,
      'title' => 'Page not found',
      'access' => TRUE,
      'callback' => 'blocks404_404_page',
      'type' => MENU_CALLBACK,
    );
  }
  return $items;
}