blob: 85346c155c62e5ac9a5f911dff182f833c953d0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<?php
/**
* @file
* Contains theme registry and theme implementations for the content types.
*/
/**
* Implementation of hook_theme to load all content plugins and pass thru if
* necessary.
*/
function ctools_stylizer_theme(&$theme) {
$theme['ctools_stylizer_color_scheme_form'] = array(
'render element' => 'form',
'file' => 'includes/stylizer.inc',
);
$theme['ctools_stylizer_preview_form'] = array(
'render element' => 'form',
'file' => 'includes/stylizer.inc',
);
$theme['ctools_style_icon'] = array(
'variables' => array('image' => NULL, 'title' => NULL),
'file' => 'includes/stylizer.inc',
);
}
|