function css_injector_theme in CSS Injector 6
Same name and namespace in other branches
- 7 css_injector.module \css_injector_theme()
Implementation of hook_theme().
File
- ./css_injector.module, line 86 
- 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(
    'arguments' => array(
      'form' => array(),
    ),
    'file' => 'css_injector.admin.inc',
  );
  return $items;
}