function content_theme_debugger_help in Content Theme 7
Same name and namespace in other branches
- 6 content_theme_debugger/content_theme_debugger.module \content_theme_debugger_help()
Implements 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 = '<h3>' . t('About') . '</h3>';
$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. 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;
}
}