function page_theme_debugger_help in Page Theme 6
Same name and namespace in other branches
- 7 page_theme_debugger/page_theme_debugger.module \page_theme_debugger_help()
Implementation of hook_help().
File
- page_theme_debugger/
page_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 page_theme_debugger_help($path, $arg) {
switch ($path) {
case 'admin/help#page_theme_debugger':
$output = '<p>' . t('The Page 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="@page_theme">Page Theme module</a>.', array(
'@page_theme' => 'http://drupal.org/project/page_theme',
)) . '</p>';
return $output;
}
}