theme_help
Definition
theme_help($section)
includes/theme.inc, line 34
Description
Hook Help - returns theme specific help and information.
Parameters
section defines the @a section of the help to be returned.
Return value
a string containing the help output.
Code
<?php
function theme_help($section) {
switch ($section) {
case 'admin/themes#description':
return t('The base theme');
}
}
?> 