forked from drupalprojects/kalatheme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.php
239 lines (220 loc) · 8.46 KB
/
template.php
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
<?php
/**
* @file
* Kalatheme's primary magic delivery system (MDS).
*/
// Use DIRNAME instead of drupal_get_path so we can use this
// during an install profile without nuking the world
// Load some helper functions
require_once dirname(__FILE__) . '/includes/utils.inc';
// Asset stuff
define('KALATHEME_BOOTSTRAP_CSS', '//netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css');
define('KALATHEME_BOOTSTRAP_JS', '//netdna.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js');
define('KALATHEME_FONTAWESOME_CSS', '//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css');
// Grid size constants
define('KALATHEME_GRID_SIZE', kalatheme_get_grid_size());
define('KALATHEME_GRID_FULL', 1);
define('KALATHEME_GRID_HALF', 1/2);
define('KALATHEME_GRID_THIRD', 1/3);
define('KALATHEME_GRID_FOURTH', 1/4);
define('KALATHEME_GRID_FIFTH', 1/5);
define('KALATHEME_GRID_SIXTH', 1/6);
// Just because we can
define('KALATHEME_GRID_SILLY', 1/42);
// Load Bootstrap overrides of Drupal theme things
require_once dirname(__FILE__) . '/includes/core.inc';
require_once dirname(__FILE__) . '/includes/fapi.inc';
require_once dirname(__FILE__) . '/includes/fields.inc';
require_once dirname(__FILE__) . '/includes/menu.inc';
require_once dirname(__FILE__) . '/includes/panels.inc';
require_once dirname(__FILE__) . '/includes/views.inc';
/**
* Implements hook_theme().
*/
function kalatheme_theme($existing, $type, $theme, $path) {
return array(
'menu_local_actions' => array(
'variables' => array('menu_actions' => NULL, 'attributes' => NULL),
'file' => 'includes/menu.inc',
),
);
}
/**
* Remove conflicting CSS.
*
* Implements hook_css_alter().
*/
function kalatheme_css_alter(&$css) {
// Unset some panopoly css.
$panopoly_admin_path = drupal_get_path('module', 'panopoly_admin');
if (isset($css[$panopoly_admin_path . '/panopoly-admin.css'])) {
unset($css[$panopoly_admin_path . '/panopoly-admin.css']);
}
$panopoly_magic_path = drupal_get_path('module', 'panopoly_magic');
if (isset($css[$panopoly_magic_path . '/css/panopoly-modal.css'])) {
unset($css[$panopoly_magic_path . '/css/panopoly-modal.css']);
}
// Unset some core css.
unset($css['modules/system/system.menus.css']);
}
/**
* Implements hook_js_alter().
*
* Borrowed from Radix :)
*
*/
function kalatheme_js_alter(&$javascript) {
// Add kalatheme-modal only when required.
$ctools_modal = drupal_get_path('module', 'ctools') . '/js/modal.js';
$kalatheme_modal = drupal_get_path('theme', 'kalatheme') . '/js/kalatheme-modal.js';
if (!empty($javascript[$ctools_modal]) && empty($javascript[$kalatheme_modal])) {
$javascript[$kalatheme_modal] = array_merge(
drupal_js_defaults(), array('group' => JS_THEME, 'data' => $kalatheme_modal));
}
}
/**
* Load Kalatheme dependencies.
*
* Implements template_preprocess_html().
*/
function kalatheme_preprocess_html(&$variables) {
// Load all dependencies.
_kalatheme_load_dependencies();
// Add variables for path to theme.
$variables['base_path'] = base_path();
$variables['path_to_kalatheme'] = dirname(__FILE__);
// Add meta for Bootstrap Responsive.
// <meta name="viewport" content="width=device-width, initial-scale=1.0">
$element = array(
'#tag' => 'meta',
'#attributes' => array(
'name' => 'viewport',
'content' => 'width=device-width, initial-scale=1.0',
),
);
drupal_add_html_head($element, 'bootstrap_responsive');
}
/**
* Override or insert variables into the page template.
*
* Implements template_process_page().
*/
function kalatheme_process_page(&$variables) {
// Add Bootstrap JS and stock CSS.
global $base_url;
$base = parse_url($base_url);
// Use the CDN if not using libraries
if (!kalatheme_use_libraries()) {
$library = theme_get_setting('bootstrap_library');
if ($library !== 'none' && !empty($library)) {
// Add the JS
drupal_add_js($base['scheme'] . ":" . KALATHEME_BOOTSTRAP_JS, 'external');
// Add the CSS
if ($library == 'default') {
$css = $base['scheme'] . ':' . KALATHEME_BOOTSTRAP_CSS;
}
else {
$css = kalatheme_get_bootswatch_theme($library)->cssCdn;
}
drupal_add_css($css, 'external');
}
}
// Use Font Awesome
if (theme_get_setting('fontawesome')) {
drupal_add_css($base['scheme'] . ":" . KALATHEME_FONTAWESOME_CSS, 'external');
}
// Define variables to theme local actions as a dropdown.
$dropdown_attributes = array(
'container' => array(
'class' => array('dropdown', 'actions', 'pull-right'),
),
'toggle' => array(
'class' => array('dropdown-toggle', 'enabled'),
'data-toggle' => array('dropdown'),
'href' => array('#'),
),
'content' => array(
'class' => array('dropdown-menu'),
),
);
// Add local actions as the last item in the local tasks.
if (!empty($variables['action_links'])) {
$variables['tabs']['#primary'][]['#markup'] = theme('menu_local_actions', array('menu_actions' => $variables['action_links'], 'attributes' => $dropdown_attributes));
$variables['action_links'] = FALSE;
}
// Get the entire main menu tree.
$main_menu_tree = array();
$main_menu_tree = menu_tree_all_data('main-menu', NULL, 2);
// Add the rendered output to the $main_menu_expanded variable.
$variables['main_menu_expanded'] = menu_tree_output($main_menu_tree);
// Always print the site name and slogan, but if they are toggled off, we'll
// just hide them visually.
$variables['hide_site_name'] = theme_get_setting('toggle_name') ? FALSE : TRUE;
$variables['hide_site_slogan'] = theme_get_setting('toggle_slogan') ? FALSE : TRUE;
if ($variables['hide_site_name']) {
// If toggle_name is FALSE, the site_name will be empty, so we rebuild it.
$variables['site_name'] = filter_xss_admin(variable_get('site_name', 'Drupal'));
}
if ($variables['hide_site_slogan']) {
// If toggle_site_slogan is FALSE, the site_slogan will be empty,
// so we rebuild it.
$variables['site_slogan'] = filter_xss_admin(variable_get('site_slogan', ''));
}
// Since the title and the shortcut link are both block level elements,
// positioning them next to each other is much simpler with a wrapper div.
if (!empty($variables['title_suffix']['add_or_remove_shortcut']) && $variables['title']) {
// Add a wrapper div using title_prefix and title_suffix render elements.
$variables['title_prefix']['shortcut_wrapper'] = array(
'#markup' => '<div class="shortcut-wrapper clearfix">',
'#weight' => 100,
);
$variables['title_suffix']['shortcut_wrapper'] = array(
'#markup' => '</div>',
'#weight' => -99,
);
// Make sure the shortcut link is the first item in title_suffix.
$variables['title_suffix']['add_or_remove_shortcut']['#weight'] = -100;
}
// If panels arent being used at all.
$variables['no_panels'] = !(module_exists('page_manager') && page_manager_get_current_page());
// Check if we're to always print the page title, even on panelized pages.
$variables['always_show_page_title'] = theme_get_setting('always_show_page_title') ? TRUE : FALSE;
}
/**
* Override or insert variables into the maintenance page template.
*/
function kalatheme_process_maintenance_page(&$variables) {
// Always print the site name and slogan, but if they are toggled off, we'll
// just hide them visually.
$variables['hide_site_name'] = theme_get_setting('toggle_name') ? FALSE : TRUE;
$variables['hide_site_slogan'] = theme_get_setting('toggle_slogan') ? FALSE : TRUE;
if ($variables['hide_site_name']) {
// If toggle_name is FALSE, the site_name will be empty, so we rebuild it.
$variables['site_name'] = filter_xss_admin(variable_get('site_name', 'Drupal'));
}
if ($variables['hide_site_slogan']) {
// If toggle_site_slogan is FALSE, rebuild the empty site slogan.
$variables['site_slogan'] = filter_xss_admin(variable_get('site_slogan', ''));
}
}
/**
* Override or insert variables into the node template.
*
* Implements template_preprocess_node().
*/
function kalatheme_preprocess_node(&$variables) {
if ($variables['view_mode'] == 'full' && node_is_page($variables['node'])) {
$variables['classes_array'][] = 'node-full';
}
}
/**
* Override or insert variables into the block template.
*
* Implements template_preprocess_block().
*/
function kalatheme_preprocess_block(&$variables) {
// In the header region visually hide block titles.
if ($variables['block']->region == 'header') {
$variables['title_attributes_array']['class'][] = 'element-invisible';
}
}