function css_injector_theme in CSS Injector 7
Same name and namespace in other branches
- 6 css_injector.module \css_injector_theme()
Implements hook_theme().
File
- ./
css_injector.module, line 195 - Allows administrators to inject CSS into the page output based on configurable rules. Useful for adding simple CSS tweaks without modifying a site's official theme.
Code
function css_injector_theme() {
$items['css_injector_admin_form'] = array(
'render element' => 'form',
'file' => 'css_injector.admin.inc',
);
return $items;
}