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