You are here

function _content_theme_debugger_block_list in Content Theme 6

1 call to _content_theme_debugger_block_list()
content_theme_debugger_block in content_theme_debugger/content_theme_debugger.module
Implementation of hook_block().

File

content_theme_debugger/content_theme_debugger.module, line 47
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_list() {
  $info = array();
  $info['content_theme_debugger'] = array(
    'info' => t('Content Theme Debugger'),
    'cache' => BLOCK_NO_CACHE,
  );
  return $info;
}