4 * Contains theme override functions and preprocess functions for the Zen theme.
6 * IMPORTANT WARNING: DO NOT MODIFY THIS FILE.
8 * The base Zen theme is designed to be easily extended by its sub-themes. You
9 * shouldn't modify this or any of the CSS or PHP files in the root zen/ folder.
10 * See the online documentation for more information:
11 * http://drupal.org/node/193318
14 // Auto-rebuild the theme registry during theme development.
15 if (theme_get_setting('zen_rebuild_registry')) {
16 // Rebuild .info data.
17 system_rebuild_theme_data();
18 // Rebuild theme registry.
19 drupal_theme_rebuild();
24 * Implements HOOK_theme().
26 function zen_theme(&$existing, $type, $theme, $path) {
27 include_once
'./' .
drupal_get_path('theme', 'zen') .
'/zen-internals/template.theme-registry.inc';
28 return _zen_theme($existing, $type, $theme, $path);
32 * Return a themed breadcrumb trail.
35 * - title: An optional string to be used as a navigational heading to give
36 * context for breadcrumb links to screen-reader users.
37 * - title_attributes_array: Array of HTML attributes for the title. It is
38 * flattened into a string within the theme function.
39 * - breadcrumb: An array containing the breadcrumb links.
41 * A string containing the breadcrumb output.
43 function zen_breadcrumb($variables) {
44 $breadcrumb = $variables['breadcrumb'];
45 // Determine if we are to display the breadcrumb.
46 $show_breadcrumb = theme_get_setting('zen_breadcrumb');
47 if ($show_breadcrumb == 'yes' || $show_breadcrumb == 'admin' && arg(0) == 'admin') {
49 // Optionally get rid of the homepage link.
50 $show_breadcrumb_home = theme_get_setting('zen_breadcrumb_home');
51 if (!$show_breadcrumb_home) {
52 array_shift($breadcrumb);
55 // Return the breadcrumb with separators.
56 if (!empty($breadcrumb)) {
57 $breadcrumb_separator = theme_get_setting('zen_breadcrumb_separator');
58 $trailing_separator = $title = '';
59 if (theme_get_setting('zen_breadcrumb_title')) {
60 $item = menu_get_item();
61 if (!empty($item['tab_parent'])) {
62 // If we are on a non-default tab, use the tab's title.
63 $title = check_plain($item['title']);
66 $title = drupal_get_title();
69 $trailing_separator = $breadcrumb_separator;
72 elseif (theme_get_setting('zen_breadcrumb_trailing')) {
73 $trailing_separator = $breadcrumb_separator;
76 // Provide a navigational heading to give context for breadcrumb links to
77 // screen-reader users.
78 if (empty($variables['title'])) {
79 $variables['title'] = t('You are here');
81 // Unless overridden by a preprocess function, make the heading invisible.
82 if (!isset($variables['title_attributes_array']['class'])) {
83 $variables['title_attributes_array']['class'][] = 'element-invisible';
85 $heading = '<h2' .
drupal_attributes($variables['title_attributes_array']) .
'>' .
$variables['title'] .
'</h2>';
87 return '<div class="breadcrumb">' .
$heading .
implode($breadcrumb_separator, $breadcrumb) .
$trailing_separator .
$title .
'</div>';
90 // Otherwise, return an empty string.
95 * Duplicate of theme_menu_local_tasks() but adds clearfix to tabs.
97 function zen_menu_local_tasks(&$variables) {
100 if ($primary = drupal_render($variables['primary'])) {
101 $output .
= '<h2 class="element-invisible">' .
t('Primary tabs') .
'</h2>';
102 $output .
= '<ul class="tabs primary clearfix">' .
$primary .
'</ul>';
104 if ($secondary = drupal_render($variables['secondary'])) {
105 $output .
= '<h2 class="element-invisible">' .
t('Secondary tabs') .
'</h2>';
106 $output .
= '<ul class="tabs secondary clearfix">' .
$secondary .
'</ul>';
113 * Override or insert variables into theme_menu_local_task().
115 function zen_preprocess_menu_local_task(&$variables) {
116 $link =& $variables['element']['#link'];
118 // If the link does not contain HTML already, check_plain() it now.
119 // After we set 'html'=TRUE the link will not be sanitized by l().
120 if (empty($link['localized_options']['html'])) {
121 $link['title'] = check_plain($link['title']);
123 $link['localized_options']['html'] = TRUE
;
124 $link['title'] = '<span class="tab">' .
$link['title'] .
'</span>';
128 * Adds conditional CSS from the .info file.
130 * Copy of conditional_styles_preprocess_html().
132 function zen_add_conditional_styles() {
133 // Make a list of base themes and the current theme.
134 $themes = $GLOBALS['base_theme_info'];
135 $themes[] = $GLOBALS['theme_info'];
136 foreach (array_keys($themes) as
$key) {
137 $theme_path = dirname($themes[$key]->filename
) .
'/';
138 if (isset($themes[$key]->info
['stylesheets-conditional'])) {
139 foreach (array_keys($themes[$key]->info
['stylesheets-conditional']) as
$condition) {
140 foreach (array_keys($themes[$key]->info
['stylesheets-conditional'][$condition]) as
$media) {
141 foreach ($themes[$key]->info
['stylesheets-conditional'][$condition][$media] as
$stylesheet) {
142 // Add each conditional stylesheet.
144 $theme_path .
$stylesheet,
146 'group' => CSS_THEME
,
151 'every_page' => TRUE
,
162 * Override or insert variables into the html template.
165 * An array of variables to pass to the theme template.
167 * The name of the template being rendered ("html" in this case.)
169 function zen_preprocess_html(&$variables, $hook) {
170 // If the user is silly and enables Zen as the theme, add some styles.
171 if ($GLOBALS['theme'] == 'zen') {
172 include_once
'./' .
drupal_get_path('theme', 'zen') .
'/zen-internals/template.zen.inc';
173 _zen_preprocess_html($variables, $hook);
175 elseif (!module_exists('conditional_styles')) {
176 zen_add_conditional_styles();
179 // Classes for body element. Allows advanced theming based on context
180 // (home page, node of certain type, etc.)
181 if (!$variables['is_front']) {
182 // Add unique class for each page.
183 $path = drupal_get_path_alias($_GET['q']);
184 // Add unique class for each website section.
185 list($section, ) = explode('/', $path, 2);
186 if (arg(0) == 'node') {
187 if (arg(1) == 'add') {
188 $section = 'node-add';
190 elseif (is_numeric(arg(1)) && (arg(2) == 'edit' || arg(2) == 'delete')) {
191 $section = 'node-' .
arg(2);
194 $variables['classes_array'][] = drupal_html_class('section-' .
$section);
196 if (theme_get_setting('zen_wireframes')) {
197 $variables['classes_array'][] = 'with-wireframes'; // Optionally add the wireframes style.
199 // Store the menu item since it has some useful information.
200 $variables['menu_item'] = menu_get_item();
201 switch ($variables['menu_item']['page_callback']) {
203 // Is this a Views page?
204 $variables['classes_array'][] = 'page-views';
206 case
'page_manager_page_execute':
207 case
'page_manager_node_view':
208 case
'page_manager_contact_site':
209 // Is this a Panels page?
210 $variables['classes_array'][] = 'page-panels';
216 * Override or insert variables into the maintenance page template.
219 * An array of variables to pass to the theme template.
221 * The name of the template being rendered ("maintenance_page" in this case.)
223 function zen_preprocess_maintenance_page(&$variables, $hook) {
224 // If Zen is the maintenance theme, add some styles.
225 if ($GLOBALS['theme'] == 'zen') {
226 include_once
'./' .
drupal_get_path('theme', 'zen') .
'/zen-internals/template.zen.inc';
227 _zen_preprocess_html($variables, $hook);
229 elseif (!module_exists('conditional_styles')) {
230 zen_add_conditional_styles();
235 * Override or insert variables into the node templates.
238 * An array of variables to pass to the theme template.
240 * The name of the template being rendered ("node" in this case.)
242 function zen_preprocess_node(&$variables, $hook) {
243 // Add $unpublished variable.
244 $variables['unpublished'] = (!$variables['status']) ? TRUE
: FALSE
;
246 // Add a class to show node is authored by current user.
247 if ($variables['uid'] && $variables['uid'] == $GLOBALS['user']->uid
) {
248 $variables['classes_array'][] = 'node-by-viewer';
251 $variables['title_attributes_array']['class'][] = 'node-title';
255 * Override or insert variables into the comment templates.
258 * An array of variables to pass to the theme template.
260 * The name of the template being rendered ("comment" in this case.)
262 function zen_preprocess_comment(&$variables, $hook) {
263 // If comment subjects are disabled, don't display them.
264 if (variable_get('comment_subject_field_' .
$variables['node']->type
, 1) == 0) {
265 $variables['title'] = '';
269 if ($variables['id'] == 1) {
270 $variables['classes_array'][] = 'first';
272 if ($variables['id'] == $variables['node']->comment_count
) {
273 $variables['classes_array'][] = 'last';
275 $variables['classes_array'][] = $variables['zebra'];
277 $variables['title_attributes_array']['class'][] = 'comment-title';
281 * Preprocess variables for region.tpl.php
284 * An array of variables to pass to the theme template.
286 * The name of the template being rendered ("region" in this case.)
288 function zen_preprocess_region(&$variables, $hook) {
289 // Sidebar regions get some extra classes and a common template suggestion.
290 if (strpos($variables['region'], 'sidebar_') === 0) {
291 $variables['classes_array'][] = 'column';
292 $variables['classes_array'][] = 'sidebar';
293 $variables['theme_hook_suggestions'][] = 'region__sidebar';
294 // Allow a region-specific template to override Zen's region--sidebar.
295 $variables['theme_hook_suggestions'][] = 'region__' .
$variables['region'];
300 * Override or insert variables into the block templates.
303 * An array of variables to pass to the theme template.
305 * The name of the template being rendered ("block" in this case.)
307 function zen_preprocess_block(&$variables, $hook) {
308 // Classes describing the position of the block within the region.
309 if ($variables['block_id'] == 1) {
310 $variables['classes_array'][] = 'first';
312 // The last_in_region property is set in zen_page_alter().
313 if (isset($variables['block']->last_in_region
)) {
314 $variables['classes_array'][] = 'last';
316 $variables['classes_array'][] = $variables['block_zebra'];
318 $variables['title_attributes_array']['class'][] = 'block-title';
322 * Override or insert variables into the block templates.
325 * An array of variables to pass to the theme template.
327 * The name of the template being rendered ("block" in this case.)
329 function zen_process_block(&$variables, $hook) {
330 // Drupal 7 should use a $title variable instead of $block->subject.
331 $variables['title'] = $variables['block']->subject
;
335 * Implements hook_page_alter().
337 * Look for the last block in the region. This is impossible to determine from
338 * within a preprocess_block function.
341 * Nested array of renderable elements that make up the page.
343 function zen_page_alter(&$page) {
344 // Look in each visible region for blocks.
345 foreach (system_region_list($GLOBALS['theme'], REGIONS_VISIBLE
) as
$region => $name) {
346 if (!empty($page[$region])) {
347 // Find the last block in the region.
348 $blocks = array_reverse(element_children($page[$region]));
349 while ($blocks && !isset($page[$region][$blocks[0]]['#block'])) {
350 array_shift($blocks);
353 $page[$region][$blocks[0]]['#block']->last_in_region
= TRUE
;