-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.php
More file actions
97 lines (89 loc) · 2.77 KB
/
template.php
File metadata and controls
97 lines (89 loc) · 2.77 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?php
/**
* Add the Style Schemes if enabled.
* NOTE: You MUST make changes in your subthemes theme-settings.php file
* also to enable Style Schemes.
*/
/* -- Delete this line if you want to enable style schemes.
// DONT TOUCH THIS STUFF...
function get_at_styles() {
$scheme = theme_get_setting('style_schemes');
if (!$scheme) {
$scheme = 'style-default.css';
}
if (isset($_COOKIE["atstyles"])) {
$scheme = $_COOKIE["atstyles"];
}
return $scheme;
}
if (theme_get_setting('style_enable_schemes') == 'on') {
$style = get_at_styles();
if ($style != 'none') {
drupal_add_css(path_to_theme() . '/css/schemes/' . $style, array('group' => CSS_THEME, 'preprocess' => TRUE));
}
}
// */
/**
* Preprocess and Process Functions SEE: http://drupal.org/node/254940#variables-processor
* 1. Rename each function to match your subthemes name,
* e.g. if you name your theme "themeName" then the function
* name will be "themeName_preprocess_hook". Tip - you can
* search/replace on "adaptivetheme_devtheme".
* 2. Uncomment the required function to use.
*/
/**
* Override or insert variables into all templates.
*/
/* -- Delete this line if you want to use these functions
function adaptivetheme_devtheme_preprocess(&$vars, $hook) {
}
function adaptivetheme_devtheme_process(&$vars, $hook) {
}
// */
/**
* Override or insert variables into the html templates.
*/
/* -- Delete this line if you want to use these functions
function adaptivetheme_devtheme_preprocess_html(&$vars) {
// Uncomment the folowing line to add a conditional stylesheet for IE 7 or less.
// drupal_add_css(path_to_theme() . '/css/ie/ie-lte-7.css', array('group' => CSS_THEME, 'browsers' => array('IE' => 'lte IE 7', '!IE' => FALSE), 'preprocess' => FALSE));
}
function adaptivetheme_devtheme_process_html(&$vars) {
}
// */
/**
* Override or insert variables into the page templates.
*/
/* -- Delete this line if you want to use these functions
function adaptivetheme_devtheme_preprocess_page(&$vars) {
}
function adaptivetheme_devtheme_process_page(&$vars) {
}
// */
/**
* Override or insert variables into the node templates.
*/
/* -- Delete this line if you want to use these functions
function adaptivetheme_devtheme_preprocess_node(&$vars) {
}
function adaptivetheme_devtheme_process_node(&$vars) {
}
// */
/**
* Override or insert variables into the comment templates.
*/
/* -- Delete this line if you want to use these functions
function adaptivetheme_devtheme_preprocess_comment(&$vars) {
}
function adaptivetheme_devtheme_process_comment(&$vars) {
}
// */
/**
* Override or insert variables into the block templates.
*/
/* -- Delete this line if you want to use these functions
function adaptivetheme_devtheme_preprocess_block(&$vars) {
}
function adaptivetheme_devtheme_process_block(&$vars) {
}
// */