function html5_tools_help in HTML5 Tools 7
Same name and namespace in other branches
- 6 html5_tools.module \html5_tools_help()
Implements hook_help().
File
- ./
html5_tools.module, line 47
Code
function html5_tools_help($path, $arg) {
switch ($path) {
case 'admin/config/development/html5-tools':
return t("HTML5 simplifies many things about HTML. Some of these new standards are a bit tricky to implement in Drupal, because they are hardcoded into Drupal core. You can alter some of them by using theme override functions in your theme's template.php file, but this module provides tools for accomplishing these changes more easily.");
break;
}
}