You are here

function simple_gse_search_menu in Simple Google Custom Search Engine 7

Implements hook_menu().

IDEA: Use the ctools page manager API to define a custom page at /search

File

./simple_gse_search.module, line 12
Module file for Simple GSE Search

Code

function simple_gse_search_menu() {
  $items['search'] = array(
    'title' => t('Search Results'),
    'page callback' => 'simple_gse_search_page',
    'access arguments' => array(
      'access content',
    ),
  );
  return $items;
}