function content_theme_debugger_block in Content Theme 6
Implementation of hook_block().
File
- content_theme_debugger/
content_theme_debugger.module, line 28 - This module displays a list of modules which override the system default theme sorted by module's call-up.
Code
function content_theme_debugger_block($op = 'list', $delta = '', $edit = array()) {
switch ($op) {
case 'list':
return _content_theme_debugger_block_list();
case 'configure':
return _content_theme_debugger_block_configure($delta);
case 'save':
_content_theme_debugger_block_save($delta, $edit);
return;
case 'view':
return _content_theme_debugger_block_view($delta);
}
}