You are here

function content_theme_debugger_help in Content Theme 6

Same name and namespace in other branches
  1. 7 content_theme_debugger/content_theme_debugger.module \content_theme_debugger_help()

Implementation of hook_help().

File

content_theme_debugger/content_theme_debugger.module, line 13
This module displays a list of modules which override the system default theme sorted by module's call-up.

Code

function content_theme_debugger_help($path, $arg) {
  switch ($path) {
    case 'admin/help#content_theme_debugger':
      $output = '<p>' . t('The Content Theme Debugger module displays a list of modules which override the system default theme sorted by module\'s call-up.') . '</p>';
      $output .= '<p>' . t('For more information, see the online handbook entry for <a href="@content_theme">Content Theme module</a>.', array(
        '@content_theme' => 'http://drupal.org/project/content_theme',
      )) . '</p>';
      return $output;
  }
}