Projet

Général

Profil

Paste
Télécharger (646 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / ctools / includes / stylizer.theme.inc @ c304a780

1
<?php
2

    
3
/**
4
 * @file
5
 * Contains theme registry and theme implementations for the content types.
6
 */
7

    
8
/**
9
 * Implementation of hook_theme to load all content plugins and pass thru if
10
 * necessary.
11
 */
12
function ctools_stylizer_theme(&$theme) {
13
  $theme['ctools_stylizer_color_scheme_form'] = array(
14
    'render element' => 'form',
15
    'file' => 'includes/stylizer.inc',
16
  );
17

    
18
  $theme['ctools_stylizer_preview_form'] = array(
19
    'render element' => 'form',
20
    'file' => 'includes/stylizer.inc',
21
  );
22

    
23
  $theme['ctools_style_icon'] = array(
24
    'variables' => array('image' => NULL, 'title' => NULL),
25
    'file' => 'includes/stylizer.inc',
26
  );
27
}