function context_ui_theme in Context 6.3
Same name and namespace in other branches
- 6 context_ui/context_ui.module \context_ui_theme()
- 6.2 context_ui/context_ui.module \context_ui_theme()
- 7.3 context_ui/context_ui.module \context_ui_theme()
Implementation of hook_theme().
File
- context_ui/
context_ui.module, line 15
Code
function context_ui_theme() {
$items = array();
$items['context_ui_form'] = array(
'arguments' => array(
'form' => array(),
),
'path' => drupal_get_path('module', 'context_ui') . '/theme',
'template' => 'context-ui-form',
'file' => 'theme.inc',
);
$items['context_ui_plugins'] = array(
'arguments' => array(
'form' => array(),
),
'path' => drupal_get_path('module', 'context_ui') . '/theme',
'template' => 'context-ui-plugins',
'file' => 'theme.inc',
);
$items['context_ui_editor'] = array(
'arguments' => array(
'form' => array(),
),
'path' => drupal_get_path('module', 'context_ui') . '/theme',
'template' => 'context-ui-editor',
'file' => 'theme.inc',
);
return $items;
}