function themekey_debug_theme in ThemeKey 7
Same name and namespace in other branches
- 7.3 themekey_debug.module \themekey_debug_theme()
- 7.2 themekey_debug.module \themekey_debug_theme()
Implements hook_theme().
File
- ./
themekey_debug.module, line 95 - Provides a debug mode for module ThemeKey.
Code
function themekey_debug_theme() {
$items = array(
'themekey_debug_messages' => array(
'template' => 'themekey-debug-messages',
'variables' => array(
'messages' => array(),
),
),
);
return $items;
}