| Commit | Line | Data |
|---|---|---|
| 0c91c6b4 | 1 | <?php |
| 0c91c6b4 | 2 | /** |
| 8c1acf80 | 3 | * @file |
| 0b1037f4 | 4 | * Contains theme override functions and preprocess functions for the Zen theme. |
| 7c5fa196 | 5 | * |
| 0b1037f4 | 6 | * IMPORTANT WARNING: DO NOT MODIFY THIS FILE. |
| 28511ba8 J |
7 | * |
| 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 | |
| 960bac1c TS |
12 | */ |
| 13 | ||
| 89804871 | 14 | // Auto-rebuild the theme registry during theme development. |
| 74cf7b61 | 15 | if (theme_get_setting('zen_rebuild_registry') && !defined('MAINTENANCE_MODE')) { |
| c37ef432 | 16 | // Rebuild .info data. |
| e28f5335 | 17 | system_rebuild_theme_data(); |
| c37ef432 J |
18 | // Rebuild theme registry. |
| 19 | drupal_theme_rebuild(); | |
| 89804871 | 20 | } |
| 7c5fa196 | 21 | |
| 719059ea | 22 | |
| 4f5c1d0c J |
23 | /** |
| 24 | * Implements HOOK_theme(). | |
| 52521ba9 | 25 | */ |
| 4f5c1d0c | 26 | function zen_theme(&$existing, $type, $theme, $path) { |
| fb2d48c9 | 27 | include_once './' . drupal_get_path('theme', 'zen') . '/zen-internals/template.theme-registry.inc'; |
| 4f5c1d0c J |
28 | return _zen_theme($existing, $type, $theme, $path); |
| 29 | } | |
| 52521ba9 | 30 | |
| 7c5fa196 J |
31 | /** |
| 32 | * Return a themed breadcrumb trail. | |
| 7081db43 | 33 | * |
| 3f537ac5 J |
34 | * @param $variables |
| 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. | |
| 7c5fa196 J |
40 | * @return |
| 41 | * A string containing the breadcrumb output. | |
| 7081db43 | 42 | */ |
| fb2d48c9 J |
43 | function zen_breadcrumb($variables) { |
| 44 | $breadcrumb = $variables['breadcrumb']; | |
| d60c8c02 | 45 | // Determine if we are to display the breadcrumb. |
| 59794464 | 46 | $show_breadcrumb = theme_get_setting('zen_breadcrumb'); |
| 52521ba9 | 47 | if ($show_breadcrumb == 'yes' || $show_breadcrumb == 'admin' && arg(0) == 'admin') { |
| 59794464 | 48 | |
| d60c8c02 | 49 | // Optionally get rid of the homepage link. |
| 59794464 | 50 | $show_breadcrumb_home = theme_get_setting('zen_breadcrumb_home'); |
| 52521ba9 | 51 | if (!$show_breadcrumb_home) { |
| 52521ba9 J |
52 | array_shift($breadcrumb); |
| 53 | } | |
| 59794464 | 54 | |
| d60c8c02 | 55 | // Return the breadcrumb with separators. |
| 52521ba9 | 56 | if (!empty($breadcrumb)) { |
| 59794464 | 57 | $breadcrumb_separator = theme_get_setting('zen_breadcrumb_separator'); |
| d60c8c02 J |
58 | $trailing_separator = $title = ''; |
| 59 | if (theme_get_setting('zen_breadcrumb_title')) { | |
| 660c4307 J |
60 | $item = menu_get_item(); |
| 61 | if (!empty($item['tab_parent'])) { | |
| f134138f | 62 | // If we are on a non-default tab, use the tab's title. |
| 660c4307 J |
63 | $title = check_plain($item['title']); |
| 64 | } | |
| 65 | else { | |
| 66 | $title = drupal_get_title(); | |
| 67 | } | |
| 68 | if ($title) { | |
| b6656287 J |
69 | $trailing_separator = $breadcrumb_separator; |
| 70 | } | |
| d60c8c02 J |
71 | } |
| 72 | elseif (theme_get_setting('zen_breadcrumb_trailing')) { | |
| 73 | $trailing_separator = $breadcrumb_separator; | |
| 74 | } | |
| 95b795f9 J |
75 | |
| 76 | // Provide a navigational heading to give context for breadcrumb links to | |
| 3f537ac5 J |
77 | // screen-reader users. |
| 78 | if (empty($variables['title'])) { | |
| 79 | $variables['title'] = t('You are here'); | |
| 80 | } | |
| 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'; | |
| 84 | } | |
| 85 | $heading = '<h2' . drupal_attributes($variables['title_attributes_array']) . '>' . $variables['title'] . '</h2>'; | |
| 95b795f9 | 86 | |
| 3f537ac5 | 87 | return '<div class="breadcrumb">' . $heading . implode($breadcrumb_separator, $breadcrumb) . $trailing_separator . $title . '</div>'; |
| 52521ba9 | 88 | } |
| 7c5fa196 | 89 | } |
| d60c8c02 | 90 | // Otherwise, return an empty string. |
| 52521ba9 | 91 | return ''; |
| 7c5fa196 J |
92 | } |
| 93 | ||
| 4f5c1d0c | 94 | /** |
| da899813 | 95 | * Duplicate of theme_menu_local_tasks() but adds clearfix to tabs. |
| 4f5c1d0c | 96 | */ |
| 2e8bbb5a J |
97 | function zen_menu_local_tasks(&$variables) { |
| 98 | $output = ''; | |
| 4f5c1d0c | 99 | |
| d8693b08 J |
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>'; | |
| 4f5c1d0c | 103 | } |
| d8693b08 J |
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>'; | |
| 4f5c1d0c J |
107 | } |
| 108 | ||
| 109 | return $output; | |
| 110 | } | |
| 960bac1c | 111 | |
| 94f89279 | 112 | /** |
| aa54f7e8 J |
113 | * Override or insert variables into theme_menu_local_task(). |
| 114 | */ | |
| 115 | function zen_preprocess_menu_local_task(&$variables) { | |
| 116 | $link =& $variables['element']['#link']; | |
| 117 | ||
| 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']); | |
| 122 | } | |
| 123 | $link['localized_options']['html'] = TRUE; | |
| 124 | $link['title'] = '<span class="tab">' . $link['title'] . '</span>'; | |
| 125 | } | |
| 126 | ||
| 127 | /** | |
| 14844512 J |
128 | * Adds conditional CSS from the .info file. |
| 129 | * | |
| 130 | * Copy of conditional_styles_preprocess_html(). | |
| 131 | */ | |
| 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. | |
| 143 | drupal_add_css( | |
| 144 | $theme_path . $stylesheet, | |
| 145 | array( | |
| 146 | 'group' => CSS_THEME, | |
| 147 | 'browsers' => array( | |
| 148 | 'IE' => $condition, | |
| 149 | '!IE' => FALSE, | |
| 150 | ), | |
| 151 | 'every_page' => TRUE, | |
| 152 | ) | |
| 153 | ); | |
| 154 | } | |
| 155 | } | |
| 156 | } | |
| 157 | } | |
| 158 | } | |
| 159 | } | |
| 160 | ||
| 161 | /** | |
| fa28a506 | 162 | * Override or insert variables into the html template. |
| 87695e28 | 163 | * |
| b6e4708e | 164 | * @param $variables |
| 0b1037f4 | 165 | * An array of variables to pass to the theme template. |
| e6f4a124 | 166 | * @param $hook |
| fa28a506 | 167 | * The name of the template being rendered ("html" in this case.) |
| 87695e28 | 168 | */ |
| b6e4708e | 169 | function zen_preprocess_html(&$variables, $hook) { |
| dd468c11 | 170 | $variables['path_to_zen'] = drupal_get_path('theme', 'zen'); |
| 78d8d215 J |
171 | // If the user is silly and enables Zen as the theme, add some styles. |
| 172 | if ($GLOBALS['theme'] == 'zen') { | |
| dd468c11 | 173 | include_once './' . $variables['path_to_zen'] . '/zen-internals/template.zen.inc'; |
| b6e4708e | 174 | _zen_preprocess_html($variables, $hook); |
| 78d8d215 | 175 | } |
| 14844512 J |
176 | elseif (!module_exists('conditional_styles')) { |
| 177 | zen_add_conditional_styles(); | |
| 178 | } | |
| 719059ea | 179 | |
| e0a8f494 J |
180 | // Classes for body element. Allows advanced theming based on context |
| 181 | // (home page, node of certain type, etc.) | |
| b6e4708e | 182 | if (!$variables['is_front']) { |
| 363d1497 | 183 | // Add unique class for each page. |
| 9faf4798 | 184 | $path = drupal_get_path_alias($_GET['q']); |
| 363d1497 | 185 | // Add unique class for each website section. |
| 8357c010 | 186 | list($section, ) = explode('/', $path, 2); |
| 28511ba8 J |
187 | if (arg(0) == 'node') { |
| 188 | if (arg(1) == 'add') { | |
| 363d1497 | 189 | $section = 'node-add'; |
| 28511ba8 J |
190 | } |
| 191 | elseif (is_numeric(arg(1)) && (arg(2) == 'edit' || arg(2) == 'delete')) { | |
| 363d1497 | 192 | $section = 'node-' . arg(2); |
| 28511ba8 J |
193 | } |
| 194 | } | |
| b6e4708e | 195 | $variables['classes_array'][] = drupal_html_class('section-' . $section); |
| 960bac1c | 196 | } |
| 2041a7c1 | 197 | if (theme_get_setting('zen_wireframes')) { |
| b6e4708e | 198 | $variables['classes_array'][] = 'with-wireframes'; // Optionally add the wireframes style. |
| 2041a7c1 | 199 | } |
| 711885f1 | 200 | // Store the menu item since it has some useful information. |
| b6e4708e J |
201 | $variables['menu_item'] = menu_get_item(); |
| 202 | switch ($variables['menu_item']['page_callback']) { | |
| 711885f1 J |
203 | case 'views_page': |
| 204 | // Is this a Views page? | |
| b6e4708e | 205 | $variables['classes_array'][] = 'page-views'; |
| 711885f1 J |
206 | break; |
| 207 | case 'page_manager_page_execute': | |
| 208 | case 'page_manager_node_view': | |
| 209 | case 'page_manager_contact_site': | |
| 210 | // Is this a Panels page? | |
| b6e4708e | 211 | $variables['classes_array'][] = 'page-panels'; |
| 711885f1 J |
212 | break; |
| 213 | } | |
| ffb5438e | 214 | $variables['jump_link_target'] = theme_get_setting('zen_jump_link_target'); |
| e0a8f494 | 215 | } |
| 7c5fa196 | 216 | |
| e0a8f494 | 217 | /** |
| 551c3139 J |
218 | * Override or insert variables into the page template. |
| 219 | * | |
| 220 | * @param $variables | |
| 221 | * An array of variables to pass to the theme template. | |
| 222 | * @param $hook | |
| 223 | * The name of the template being rendered ("page" in this case.) | |
| 224 | */ | |
| 225 | function zen_preprocess_page(&$variables, $hook) { | |
| 226 | // Find the title of the menu used by the secondary links. | |
| 227 | $secondary_links = variable_get('menu_secondary_links_source', 'user-menu'); | |
| 9d330c3b J |
228 | if ($secondary_links) { |
| 229 | $menus = function_exists('menu_get_menus') ? menu_get_menus() : menu_list_system_menus(); | |
| 230 | $variables['secondary_menu_heading'] = $menus[$secondary_links]; | |
| 231 | } | |
| 232 | else { | |
| 233 | $variables['secondary_menu_heading'] = ''; | |
| 234 | } | |
| 551c3139 J |
235 | } |
| 236 | ||
| 237 | /** | |
| 3183d194 J |
238 | * Override or insert variables into the maintenance page template. |
| 239 | * | |
| b6e4708e | 240 | * @param $variables |
| 3183d194 J |
241 | * An array of variables to pass to the theme template. |
| 242 | * @param $hook | |
| 31c1fbc2 | 243 | * The name of the template being rendered ("maintenance_page" in this case.) |
| 3183d194 | 244 | */ |
| b6e4708e | 245 | function zen_preprocess_maintenance_page(&$variables, $hook) { |
| 3183d194 J |
246 | // If Zen is the maintenance theme, add some styles. |
| 247 | if ($GLOBALS['theme'] == 'zen') { | |
| fb2d48c9 | 248 | include_once './' . drupal_get_path('theme', 'zen') . '/zen-internals/template.zen.inc'; |
| b6e4708e | 249 | _zen_preprocess_html($variables, $hook); |
| 3183d194 | 250 | } |
| 3183d194 | 251 | elseif (!module_exists('conditional_styles')) { |
| 14844512 | 252 | zen_add_conditional_styles(); |
| 3183d194 | 253 | } |
| 3183d194 J |
254 | } |
| 255 | ||
| 256 | /** | |
| 0b1037f4 | 257 | * Override or insert variables into the node templates. |
| e0a8f494 | 258 | * |
| b6e4708e | 259 | * @param $variables |
| 0b1037f4 | 260 | * An array of variables to pass to the theme template. |
| e6f4a124 | 261 | * @param $hook |
| 0b1037f4 | 262 | * The name of the template being rendered ("node" in this case.) |
| e0a8f494 | 263 | */ |
| b6e4708e | 264 | function zen_preprocess_node(&$variables, $hook) { |
| e7ce78eb | 265 | // Add $unpublished variable. |
| b6e4708e | 266 | $variables['unpublished'] = (!$variables['status']) ? TRUE : FALSE; |
| 911d5130 | 267 | |
| bfea55ea J |
268 | // Add a class for the view mode. |
| 269 | if (!$variables['teaser']) { | |
| 270 | $variables['classes_array'][] = 'view-mode-' . $variables['view_mode']; | |
| 271 | } | |
| 272 | ||
| e7ce78eb | 273 | // Add a class to show node is authored by current user. |
| b6e4708e J |
274 | if ($variables['uid'] && $variables['uid'] == $GLOBALS['user']->uid) { |
| 275 | $variables['classes_array'][] = 'node-by-viewer'; | |
| c91ed8a5 | 276 | } |
| 4e316b5a | 277 | |
| b6e4708e | 278 | $variables['title_attributes_array']['class'][] = 'node-title'; |
| e0a8f494 | 279 | } |
| 7c5fa196 | 280 | |
| e0a8f494 | 281 | /** |
| 0b1037f4 | 282 | * Override or insert variables into the comment templates. |
| e0a8f494 | 283 | * |
| b6e4708e | 284 | * @param $variables |
| 0b1037f4 | 285 | * An array of variables to pass to the theme template. |
| e6f4a124 | 286 | * @param $hook |
| 0b1037f4 | 287 | * The name of the template being rendered ("comment" in this case.) |
| e0a8f494 | 288 | */ |
| b6e4708e | 289 | function zen_preprocess_comment(&$variables, $hook) { |
| e8e12945 | 290 | // If comment subjects are disabled, don't display them. |
| b6e4708e J |
291 | if (variable_get('comment_subject_field_' . $variables['node']->type, 1) == 0) { |
| 292 | $variables['title'] = ''; | |
| e8e12945 J |
293 | } |
| 294 | ||
| d2d67844 J |
295 | // Anonymous class is broken in core. See #1110650 |
| 296 | if ($variables['comment']->uid == 0) { | |
| 297 | $variables['classes_array'][] = 'comment-by-anonymous'; | |
| 298 | } | |
| e8e12945 | 299 | // Zebra striping. |
| b6e4708e J |
300 | if ($variables['id'] == 1) { |
| 301 | $variables['classes_array'][] = 'first'; | |
| e8e12945 | 302 | } |
| b6e4708e J |
303 | if ($variables['id'] == $variables['node']->comment_count) { |
| 304 | $variables['classes_array'][] = 'last'; | |
| e8e12945 | 305 | } |
| b6e4708e | 306 | $variables['classes_array'][] = $variables['zebra']; |
| e8e12945 | 307 | |
| b6e4708e | 308 | $variables['title_attributes_array']['class'][] = 'comment-title'; |
| 960bac1c | 309 | } |
| 4dd0f1bf JR |
310 | |
| 311 | /** | |
| 94f89279 J |
312 | * Preprocess variables for region.tpl.php |
| 313 | * | |
| 7f47e51d J |
314 | * @param $variables |
| 315 | * An array of variables to pass to the theme template. | |
| 316 | * @param $hook | |
| 317 | * The name of the template being rendered ("region" in this case.) | |
| 94f89279 | 318 | */ |
| b6e4708e | 319 | function zen_preprocess_region(&$variables, $hook) { |
| 6b8155aa | 320 | // Sidebar regions get some extra classes and a common template suggestion. |
| b6e4708e J |
321 | if (strpos($variables['region'], 'sidebar_') === 0) { |
| 322 | $variables['classes_array'][] = 'column'; | |
| 323 | $variables['classes_array'][] = 'sidebar'; | |
| 324 | $variables['theme_hook_suggestions'][] = 'region__sidebar'; | |
| 6b8155aa | 325 | // Allow a region-specific template to override Zen's region--sidebar. |
| b6e4708e | 326 | $variables['theme_hook_suggestions'][] = 'region__' . $variables['region']; |
| 995d309c | 327 | } |
| 94f89279 J |
328 | } |
| 329 | ||
| 330 | /** | |
| 0b1037f4 | 331 | * Override or insert variables into the block templates. |
| 28511ba8 | 332 | * |
| b6e4708e | 333 | * @param $variables |
| 0b1037f4 | 334 | * An array of variables to pass to the theme template. |
| e6f4a124 | 335 | * @param $hook |
| 0b1037f4 | 336 | * The name of the template being rendered ("block" in this case.) |
| 28511ba8 | 337 | */ |
| b6e4708e | 338 | function zen_preprocess_block(&$variables, $hook) { |
| 288001f7 | 339 | // Classes describing the position of the block within the region. |
| b6e4708e J |
340 | if ($variables['block_id'] == 1) { |
| 341 | $variables['classes_array'][] = 'first'; | |
| 288001f7 J |
342 | } |
| 343 | // The last_in_region property is set in zen_page_alter(). | |
| b6e4708e J |
344 | if (isset($variables['block']->last_in_region)) { |
| 345 | $variables['classes_array'][] = 'last'; | |
| 288001f7 | 346 | } |
| b6e4708e | 347 | $variables['classes_array'][] = $variables['block_zebra']; |
| 4e316b5a | 348 | |
| b6e4708e | 349 | $variables['title_attributes_array']['class'][] = 'block-title'; |
| 3183d194 | 350 | } |
| a3f7ecae J |
351 | |
| 352 | /** | |
| 353 | * Override or insert variables into the block templates. | |
| 354 | * | |
| b6e4708e | 355 | * @param $variables |
| a3f7ecae J |
356 | * An array of variables to pass to the theme template. |
| 357 | * @param $hook | |
| 358 | * The name of the template being rendered ("block" in this case.) | |
| 359 | */ | |
| b6e4708e | 360 | function zen_process_block(&$variables, $hook) { |
| a3f7ecae | 361 | // Drupal 7 should use a $title variable instead of $block->subject. |
| b6e4708e | 362 | $variables['title'] = $variables['block']->subject; |
| a3f7ecae | 363 | } |
| 288001f7 J |
364 | |
| 365 | /** | |
| 366 | * Implements hook_page_alter(). | |
| 367 | * | |
| 368 | * Look for the last block in the region. This is impossible to determine from | |
| 369 | * within a preprocess_block function. | |
| 370 | * | |
| 371 | * @param $page | |
| 372 | * Nested array of renderable elements that make up the page. | |
| 373 | */ | |
| 374 | function zen_page_alter(&$page) { | |
| 375 | // Look in each visible region for blocks. | |
| 376 | foreach (system_region_list($GLOBALS['theme'], REGIONS_VISIBLE) as $region => $name) { | |
| 377 | if (!empty($page[$region])) { | |
| 378 | // Find the last block in the region. | |
| 379 | $blocks = array_reverse(element_children($page[$region])); | |
| 380 | while ($blocks && !isset($page[$region][$blocks[0]]['#block'])) { | |
| 381 | array_shift($blocks); | |
| 382 | } | |
| 383 | if ($blocks) { | |
| 384 | $page[$region][$blocks[0]]['#block']->last_in_region = TRUE; | |
| 385 | } | |
| 386 | } | |
| 387 | } | |
| 388 | } |