You are here

function page_theme_debugger_block in Page Theme 6

Implementation of hook_block().

File

page_theme_debugger/page_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 page_theme_debugger_block($op = 'list', $delta = '', $edit = array()) {
  switch ($op) {
    case 'list':
      return _page_theme_debugger_block_list();
    case 'configure':
      return _page_theme_debugger_block_configure($delta);
    case 'save':
      _page_theme_debugger_block_save($delta, $edit);
      return;
    case 'view':
      return _page_theme_debugger_block_view($delta);
  }
}