You are here

function tabsexample_menu in Javascript Tools 5

Implementation of hook_menu().

File

tabs/docs/tabsexample.module, line 6

Code

function tabsexample_menu($may_cache) {
  $items = array();
  if ($may_cache) {
    $items[] = array(
      'path' => 'tabsexample',
      'title' => t('tabs example'),
      'callback' => 'tabs_render',
      'callback arguments' => array(
        tabsexample_form(),
      ),
      'access' => TRUE,
      'type' => MENU_CALLBACK,
    );
  }
  return $items;
}