function color_theme
Same name and namespace in other branches
- 6.x drupal-6.x/modules/color/color.module \color_theme()
Implements hook_theme().
Archivo
- drupal-7.x/
modules/ color/ color.module, line 28 - Allows users to change the color scheme of themes.
Código
function color_theme() {
return array(
'color_scheme_form' => array(
'render element' => 'form',
),
);
}