function css_injector_help in CSS Injector 7.2
Same name and namespace in other branches
- 6 css_injector.module \css_injector_help()
- 7 css_injector.module \css_injector_help()
Implements hook_help().
File
- ./
css_injector.module, line 16 - css_injector.module
Code
function css_injector_help($path, $arg) {
$output = '';
switch ($path) {
case 'admin/config/development/css-injector':
$output .= '<p>' . t('Use CSS injection rules to add small snippets of CSS to the page output when specific criteria are met. For example, a simple rule could change the page background color at night or float a particular div to the right on node editing pages.') . '</p>';
break;
}
return $output;
}