function activeedit_theme_assist_menu in Javascript Tools 5
Implementation of hook_menu().
File
- activeedit/
activeedit_theme_assist/ activeedit_theme_assist.module, line 6
Code
function activeedit_theme_assist_menu($may_cache) {
$items = array();
if ($may_cache) {
$items[] = array(
'path' => 'admin/settings/activeedit_theme_assist',
'title' => t('Activeedit theme assist'),
'description' => t('Helper page for theming Active Edit'),
'callback' => 'drupal_get_form',
'callback arguments' => array(
'activeedit_theme_assist_form',
),
);
}
return $items;
}