| 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']; | |
| 261a11a7 J |
45 | $output = ''; |
| 46 | ||
| d60c8c02 | 47 | // Determine if we are to display the breadcrumb. |
| 59794464 | 48 | $show_breadcrumb = theme_get_setting('zen_breadcrumb'); |
| 52521ba9 | 49 | if ($show_breadcrumb == 'yes' || $show_breadcrumb == 'admin' && arg(0) == 'admin') { |
| 59794464 | 50 | |
| d60c8c02 | 51 | // Optionally get rid of the homepage link. |
| 59794464 | 52 | $show_breadcrumb_home = theme_get_setting('zen_breadcrumb_home'); |
| 52521ba9 | 53 | if (!$show_breadcrumb_home) { |
| 52521ba9 J |
54 | array_shift($breadcrumb); |
| 55 | } | |
| 59794464 | 56 | |
| d60c8c02 | 57 | // Return the breadcrumb with separators. |
| 52521ba9 | 58 | if (!empty($breadcrumb)) { |
| 59794464 | 59 | $breadcrumb_separator = theme_get_setting('zen_breadcrumb_separator'); |
| d60c8c02 J |
60 | $trailing_separator = $title = ''; |
| 61 | if (theme_get_setting('zen_breadcrumb_title')) { | |
| 660c4307 J |
62 | $item = menu_get_item(); |
| 63 | if (!empty($item['tab_parent'])) { | |
| f134138f | 64 | // If we are on a non-default tab, use the tab's title. |
| 261a11a7 | 65 | $breadcrumb[] = check_plain($item['title']); |
| 660c4307 J |
66 | } |
| 67 | else { | |
| 261a11a7 | 68 | $breadcrumb[] = drupal_get_title(); |
| b6656287 | 69 | } |
| d60c8c02 J |
70 | } |
| 71 | elseif (theme_get_setting('zen_breadcrumb_trailing')) { | |
| 72 | $trailing_separator = $breadcrumb_separator; | |
| 73 | } | |
| 95b795f9 J |
74 | |
| 75 | // Provide a navigational heading to give context for breadcrumb links to | |
| 3f537ac5 J |
76 | // screen-reader users. |
| 77 | if (empty($variables['title'])) { | |
| 78 | $variables['title'] = t('You are here'); | |
| 79 | } | |
| 80 | // Unless overridden by a preprocess function, make the heading invisible. | |
| 81 | if (!isset($variables['title_attributes_array']['class'])) { | |
| 82 | $variables['title_attributes_array']['class'][] = 'element-invisible'; | |
| 83 | } | |
| 95b795f9 | 84 | |
| 261a11a7 | 85 | // Build the breadcrumb trail. |
| d2eb80c4 | 86 | $output = '<nav class="breadcrumb" role="navigation">'; |
| 261a11a7 | 87 | $output .= '<h2' . drupal_attributes($variables['title_attributes_array']) . '>' . $variables['title'] . '</h2>'; |
| 542f8447 | 88 | $output .= '<ol><li>' . implode($breadcrumb_separator . '</li><li>', $breadcrumb) . $trailing_separator . '</li></ol>'; |
| 261a11a7 | 89 | $output .= '</nav>'; |
| 52521ba9 | 90 | } |
| 7c5fa196 | 91 | } |
| 261a11a7 J |
92 | |
| 93 | return $output; | |
| 7c5fa196 J |
94 | } |
| 95 | ||
| 4f5c1d0c | 96 | /** |
| fa28a506 | 97 | * Override or insert variables into the html template. |
| 87695e28 | 98 | * |
| b6e4708e | 99 | * @param $variables |
| 0b1037f4 | 100 | * An array of variables to pass to the theme template. |
| e6f4a124 | 101 | * @param $hook |
| 500fee10 J |
102 | * The name of the template being rendered. This is usually "html", but can |
| 103 | * also be "maintenance_page" since zen_preprocess_maintenance_page() calls | |
| 104 | * this function to have consistent variables. | |
| 87695e28 | 105 | */ |
| b6e4708e | 106 | function zen_preprocess_html(&$variables, $hook) { |
| 3a6e01fa | 107 | // Add variables and paths needed for HTML5 and responsive support. |
| c6e9e869 | 108 | $variables['base_path'] = base_path(); |
| dd468c11 | 109 | $variables['path_to_zen'] = drupal_get_path('theme', 'zen'); |
| 3a6e01fa J |
110 | $html5_respond_meta = theme_get_setting('zen_html5_respond_meta'); |
| 111 | $variables['add_respond_js'] = in_array('respond', $html5_respond_meta); | |
| 112 | $variables['add_html5_shim'] = in_array('html5', $html5_respond_meta); | |
| 113 | $variables['add_responsive_meta'] = in_array('meta', $html5_respond_meta); | |
| c6e9e869 | 114 | |
| 78d8d215 J |
115 | // If the user is silly and enables Zen as the theme, add some styles. |
| 116 | if ($GLOBALS['theme'] == 'zen') { | |
| dd468c11 | 117 | include_once './' . $variables['path_to_zen'] . '/zen-internals/template.zen.inc'; |
| b6e4708e | 118 | _zen_preprocess_html($variables, $hook); |
| 78d8d215 | 119 | } |
| 719059ea | 120 | |
| 104f8e30 J |
121 | // Attributes for html element. |
| 122 | $variables['html_attributes_array'] = array( | |
| 123 | 'lang' => $variables['language']->language, | |
| 124 | 'dir' => $variables['language']->dir, | |
| 125 | ); | |
| 126 | ||
| e0a8f494 J |
127 | // Classes for body element. Allows advanced theming based on context |
| 128 | // (home page, node of certain type, etc.) | |
| 500fee10 | 129 | if (!$variables['is_front'] && $hook == 'html') { |
| 363d1497 | 130 | // Add unique class for each page. |
| 9faf4798 | 131 | $path = drupal_get_path_alias($_GET['q']); |
| 363d1497 | 132 | // Add unique class for each website section. |
| 8357c010 | 133 | list($section, ) = explode('/', $path, 2); |
| a2831350 | 134 | $arg = explode('/', $_GET['q']); |
| a282fbb5 J |
135 | if ($arg[0] == 'node' && isset($arg[1])) { |
| 136 | if ($arg[1] == 'add') { | |
| 363d1497 | 137 | $section = 'node-add'; |
| 28511ba8 | 138 | } |
| 63231c44 | 139 | elseif (isset($arg[2]) && is_numeric($arg[1]) && ($arg[2] == 'edit' || $arg[2] == 'delete')) { |
| a2831350 | 140 | $section = 'node-' . $arg[2]; |
| 28511ba8 J |
141 | } |
| 142 | } | |
| b6e4708e | 143 | $variables['classes_array'][] = drupal_html_class('section-' . $section); |
| 960bac1c | 144 | } |
| 2041a7c1 | 145 | if (theme_get_setting('zen_wireframes')) { |
| b6e4708e | 146 | $variables['classes_array'][] = 'with-wireframes'; // Optionally add the wireframes style. |
| 2041a7c1 | 147 | } |
| 711885f1 | 148 | // Store the menu item since it has some useful information. |
| 500fee10 J |
149 | if ($hook == 'html') { |
| 150 | $variables['menu_item'] = menu_get_item(); | |
| 151 | if ($variables['menu_item']) { | |
| 152 | switch ($variables['menu_item']['page_callback']) { | |
| 153 | case 'views_page': | |
| 154 | // Is this a Views page? | |
| 155 | $variables['classes_array'][] = 'page-views'; | |
| 156 | break; | |
| 157 | case 'page_manager_page_execute': | |
| 158 | case 'page_manager_node_view': | |
| 159 | case 'page_manager_contact_site': | |
| 160 | // Is this a Panels page? | |
| 161 | $variables['classes_array'][] = 'page-panels'; | |
| 162 | break; | |
| 163 | } | |
| 164 | } | |
| 711885f1 | 165 | } |
| aeec717d J |
166 | $variables['skip_link_anchor'] = theme_get_setting('zen_skip_link_anchor'); |
| 167 | $variables['skip_link_text'] = theme_get_setting('zen_skip_link_text'); | |
| e0a8f494 | 168 | } |
| 7c5fa196 | 169 | |
| e0a8f494 | 170 | /** |
| 104f8e30 J |
171 | * Override or insert variables into the html templates. |
| 172 | * | |
| 173 | * @param $variables | |
| 174 | * An array of variables to pass to the theme template. | |
| 175 | * @param $hook | |
| 176 | * The name of the template being rendered ("html" in this case.) | |
| 177 | */ | |
| 178 | function zen_process_html(&$variables, $hook) { | |
| 179 | // Flatten out html_attributes. | |
| 180 | $variables['html_attributes'] = drupal_attributes($variables['html_attributes_array']); | |
| 181 | } | |
| 182 | ||
| 183 | /** | |
| abb4efe9 J |
184 | * Override or insert variables in the html_tag theme function. |
| 185 | */ | |
| 186 | function zen_process_html_tag(&$variables) { | |
| 187 | $tag = &$variables['element']; | |
| 188 | ||
| 189 | if ($tag['#tag'] == 'style' || $tag['#tag'] == 'script') { | |
| 190 | // Remove redundant type attribute and CDATA comments. | |
| 191 | unset($tag['#attributes']['type'], $tag['#value_prefix'], $tag['#value_suffix']); | |
| 192 | ||
| 193 | // Remove media="all" but leave others unaffected. | |
| 194 | if (isset($tag['#attributes']['media']) && $tag['#attributes']['media'] === 'all') { | |
| 195 | unset($tag['#attributes']['media']); | |
| 196 | } | |
| 197 | } | |
| 198 | } | |
| 199 | ||
| 200 | /** | |
| 1256823c J |
201 | * Implement hook_html_head_alter(). |
| 202 | */ | |
| 203 | function zen_html_head_alter(&$head) { | |
| 204 | // Simplify the meta tag for character encoding. | |
| 205 | $head['system_meta_content_type']['#attributes'] = array('charset' => str_replace('text/html; charset=', '', $head['system_meta_content_type']['#attributes']['content'])); | |
| 206 | } | |
| 207 | ||
| 208 | /** | |
| 551c3139 J |
209 | * Override or insert variables into the page template. |
| 210 | * | |
| 211 | * @param $variables | |
| 212 | * An array of variables to pass to the theme template. | |
| 213 | * @param $hook | |
| 214 | * The name of the template being rendered ("page" in this case.) | |
| 215 | */ | |
| 216 | function zen_preprocess_page(&$variables, $hook) { | |
| 217 | // Find the title of the menu used by the secondary links. | |
| 218 | $secondary_links = variable_get('menu_secondary_links_source', 'user-menu'); | |
| 9d330c3b J |
219 | if ($secondary_links) { |
| 220 | $menus = function_exists('menu_get_menus') ? menu_get_menus() : menu_list_system_menus(); | |
| 221 | $variables['secondary_menu_heading'] = $menus[$secondary_links]; | |
| 222 | } | |
| 223 | else { | |
| 224 | $variables['secondary_menu_heading'] = ''; | |
| 225 | } | |
| 551c3139 J |
226 | } |
| 227 | ||
| 228 | /** | |
| 3183d194 J |
229 | * Override or insert variables into the maintenance page template. |
| 230 | * | |
| b6e4708e | 231 | * @param $variables |
| 3183d194 J |
232 | * An array of variables to pass to the theme template. |
| 233 | * @param $hook | |
| 31c1fbc2 | 234 | * The name of the template being rendered ("maintenance_page" in this case.) |
| 3183d194 | 235 | */ |
| b6e4708e | 236 | function zen_preprocess_maintenance_page(&$variables, $hook) { |
| 500fee10 | 237 | zen_preprocess_html($variables, $hook); |
| 104f8e30 J |
238 | } |
| 239 | ||
| 240 | /** | |
| 241 | * Override or insert variables into the maintenance page template. | |
| 242 | * | |
| 243 | * @param $variables | |
| 244 | * An array of variables to pass to the theme template. | |
| 245 | * @param $hook | |
| 246 | * The name of the template being rendered ("maintenance_page" in this case.) | |
| 247 | */ | |
| 248 | function zen_process_maintenance_page(&$variables, $hook) { | |
| 500fee10 | 249 | zen_process_html($variables, $hook); |
| 690c4caf J |
250 | // Ensure default regions get a variable. Theme authors often forget to remove |
| 251 | // a deleted region's variable in maintenance-page.tpl. | |
| 252 | foreach (array('header', 'navigation', 'highlighted', 'help', 'content', 'sidebar_first', 'sidebar_second', 'footer', 'bottom') as $region) { | |
| 253 | if (!isset($variables[$region])) { | |
| 254 | $variables[$region] = ''; | |
| 255 | } | |
| 256 | } | |
| 3183d194 J |
257 | } |
| 258 | ||
| 259 | /** | |
| 0b1037f4 | 260 | * Override or insert variables into the node templates. |
| e0a8f494 | 261 | * |
| b6e4708e | 262 | * @param $variables |
| 0b1037f4 | 263 | * An array of variables to pass to the theme template. |
| e6f4a124 | 264 | * @param $hook |
| 0b1037f4 | 265 | * The name of the template being rendered ("node" in this case.) |
| e0a8f494 | 266 | */ |
| b6e4708e | 267 | function zen_preprocess_node(&$variables, $hook) { |
| e7ce78eb | 268 | // Add $unpublished variable. |
| b6e4708e | 269 | $variables['unpublished'] = (!$variables['status']) ? TRUE : FALSE; |
| 911d5130 | 270 | |
| 64d0d22d J |
271 | // Add pubdate to submitted variable. |
| 272 | $variables['pubdate'] = '<time pubdate datetime="' . format_date($variables['node']->created, 'custom', 'c') . '">' . $variables['date'] . '</time>'; | |
| 273 | if ($variables['display_submitted']) { | |
| 274 | $variables['submitted'] = t('Submitted by !username on !datetime', array('!username' => $variables['name'], '!datetime' => $variables['pubdate'])); | |
| 275 | } | |
| 276 | ||
| bfea55ea J |
277 | // Add a class for the view mode. |
| 278 | if (!$variables['teaser']) { | |
| 279 | $variables['classes_array'][] = 'view-mode-' . $variables['view_mode']; | |
| 280 | } | |
| 281 | ||
| e7ce78eb | 282 | // Add a class to show node is authored by current user. |
| b6e4708e J |
283 | if ($variables['uid'] && $variables['uid'] == $GLOBALS['user']->uid) { |
| 284 | $variables['classes_array'][] = 'node-by-viewer'; | |
| c91ed8a5 | 285 | } |
| 4e316b5a | 286 | |
| b6e4708e | 287 | $variables['title_attributes_array']['class'][] = 'node-title'; |
| e0a8f494 | 288 | } |
| 7c5fa196 | 289 | |
| e0a8f494 | 290 | /** |
| 0b1037f4 | 291 | * Override or insert variables into the comment templates. |
| e0a8f494 | 292 | * |
| b6e4708e | 293 | * @param $variables |
| 0b1037f4 | 294 | * An array of variables to pass to the theme template. |
| e6f4a124 | 295 | * @param $hook |
| 0b1037f4 | 296 | * The name of the template being rendered ("comment" in this case.) |
| e0a8f494 | 297 | */ |
| b6e4708e | 298 | function zen_preprocess_comment(&$variables, $hook) { |
| e8e12945 | 299 | // If comment subjects are disabled, don't display them. |
| b6e4708e J |
300 | if (variable_get('comment_subject_field_' . $variables['node']->type, 1) == 0) { |
| 301 | $variables['title'] = ''; | |
| e8e12945 J |
302 | } |
| 303 | ||
| 64d0d22d J |
304 | // Add pubdate to submitted variable. |
| 305 | $variables['pubdate'] = '<time pubdate datetime="' . format_date($variables['comment']->created, 'custom', 'c') . '">' . $variables['created'] . '</time>'; | |
| 306 | $variables['submitted'] = t('!username replied on !datetime', array('!username' => $variables['author'], '!datetime' => $variables['pubdate'])); | |
| 307 | ||
| e8e12945 | 308 | // Zebra striping. |
| b6e4708e J |
309 | if ($variables['id'] == 1) { |
| 310 | $variables['classes_array'][] = 'first'; | |
| e8e12945 | 311 | } |
| b6e4708e J |
312 | if ($variables['id'] == $variables['node']->comment_count) { |
| 313 | $variables['classes_array'][] = 'last'; | |
| e8e12945 | 314 | } |
| b6e4708e | 315 | $variables['classes_array'][] = $variables['zebra']; |
| e8e12945 | 316 | |
| b6e4708e | 317 | $variables['title_attributes_array']['class'][] = 'comment-title'; |
| 960bac1c | 318 | } |
| 4dd0f1bf JR |
319 | |
| 320 | /** | |
| 94f89279 J |
321 | * Preprocess variables for region.tpl.php |
| 322 | * | |
| 7f47e51d J |
323 | * @param $variables |
| 324 | * An array of variables to pass to the theme template. | |
| 325 | * @param $hook | |
| 326 | * The name of the template being rendered ("region" in this case.) | |
| 94f89279 | 327 | */ |
| b6e4708e | 328 | function zen_preprocess_region(&$variables, $hook) { |
| 6b8155aa | 329 | // Sidebar regions get some extra classes and a common template suggestion. |
| b6e4708e J |
330 | if (strpos($variables['region'], 'sidebar_') === 0) { |
| 331 | $variables['classes_array'][] = 'column'; | |
| 332 | $variables['classes_array'][] = 'sidebar'; | |
| 6b8155aa | 333 | // Allow a region-specific template to override Zen's region--sidebar. |
| 23e39483 | 334 | array_unshift($variables['theme_hook_suggestions'], 'region__sidebar'); |
| 995d309c | 335 | } |
| 67c4a567 | 336 | // Use a template with no wrapper for the content region. |
| 786931f7 | 337 | elseif ($variables['region'] == 'content') { |
| 23e39483 J |
338 | // Allow a region-specific template to override Zen's region--no-wrapper. |
| 339 | array_unshift($variables['theme_hook_suggestions'], 'region__no_wrapper'); | |
| 786931f7 | 340 | } |
| 94f89279 J |
341 | } |
| 342 | ||
| 343 | /** | |
| 0b1037f4 | 344 | * Override or insert variables into the block templates. |
| 28511ba8 | 345 | * |
| b6e4708e | 346 | * @param $variables |
| 0b1037f4 | 347 | * An array of variables to pass to the theme template. |
| e6f4a124 | 348 | * @param $hook |
| 0b1037f4 | 349 | * The name of the template being rendered ("block" in this case.) |
| 28511ba8 | 350 | */ |
| b6e4708e | 351 | function zen_preprocess_block(&$variables, $hook) { |
| 67c4a567 | 352 | // Use a template with no wrapper for the page's main content. |
| 786931f7 | 353 | if ($variables['block_html_id'] == 'block-system-main') { |
| 67c4a567 | 354 | $variables['theme_hook_suggestions'][] = 'block__no_wrapper'; |
| 786931f7 J |
355 | } |
| 356 | ||
| 288001f7 | 357 | // Classes describing the position of the block within the region. |
| b6e4708e J |
358 | if ($variables['block_id'] == 1) { |
| 359 | $variables['classes_array'][] = 'first'; | |
| 288001f7 J |
360 | } |
| 361 | // The last_in_region property is set in zen_page_alter(). | |
| b6e4708e J |
362 | if (isset($variables['block']->last_in_region)) { |
| 363 | $variables['classes_array'][] = 'last'; | |
| 288001f7 | 364 | } |
| b6e4708e | 365 | $variables['classes_array'][] = $variables['block_zebra']; |
| 4e316b5a | 366 | |
| b6e4708e | 367 | $variables['title_attributes_array']['class'][] = 'block-title'; |
| 94c5b270 J |
368 | |
| 369 | // Add Aria Roles via attributes. | |
| 370 | switch ($variables['block']->module) { | |
| 371 | case 'system': | |
| 372 | switch ($variables['block']->delta) { | |
| 373 | case 'main': | |
| 374 | // Note: the "main" role goes in the page.tpl, not here. | |
| 375 | break; | |
| 376 | case 'help': | |
| 377 | case 'powered-by': | |
| 378 | $variables['attributes_array']['role'] = 'complementary'; | |
| 379 | break; | |
| 380 | default: | |
| 381 | // Any other "system" block is a menu block. | |
| 382 | $variables['attributes_array']['role'] = 'navigation'; | |
| 383 | break; | |
| 384 | } | |
| 385 | break; | |
| 386 | case 'menu': | |
| 387 | case 'menu_block': | |
| 388 | case 'blog': | |
| 389 | case 'book': | |
| 390 | case 'comment': | |
| 391 | case 'forum': | |
| 392 | case 'shortcut': | |
| 393 | case 'statistics': | |
| 394 | $variables['attributes_array']['role'] = 'navigation'; | |
| 395 | break; | |
| 396 | case 'search': | |
| 397 | $variables['attributes_array']['role'] = 'search'; | |
| 398 | break; | |
| 399 | case 'help': | |
| 400 | case 'aggregator': | |
| 401 | case 'locale': | |
| 402 | case 'poll': | |
| 403 | case 'profile': | |
| 404 | $variables['attributes_array']['role'] = 'complementary'; | |
| 405 | break; | |
| 406 | case 'node': | |
| 407 | switch ($variables['block']->delta) { | |
| 408 | case 'syndicate': | |
| 409 | $variables['attributes_array']['role'] = 'complementary'; | |
| 410 | break; | |
| 411 | case 'recent': | |
| 412 | $variables['attributes_array']['role'] = 'navigation'; | |
| 413 | break; | |
| 414 | } | |
| 415 | break; | |
| 416 | case 'user': | |
| 417 | switch ($variables['block']->delta) { | |
| 418 | case 'login': | |
| 419 | $variables['attributes_array']['role'] = 'form'; | |
| 420 | break; | |
| 421 | case 'new': | |
| 422 | case 'online': | |
| 423 | $variables['attributes_array']['role'] = 'complementary'; | |
| 424 | break; | |
| 425 | } | |
| 426 | break; | |
| 427 | } | |
| 3183d194 | 428 | } |
| a3f7ecae J |
429 | |
| 430 | /** | |
| 431 | * Override or insert variables into the block templates. | |
| 432 | * | |
| b6e4708e | 433 | * @param $variables |
| a3f7ecae J |
434 | * An array of variables to pass to the theme template. |
| 435 | * @param $hook | |
| 436 | * The name of the template being rendered ("block" in this case.) | |
| 437 | */ | |
| b6e4708e | 438 | function zen_process_block(&$variables, $hook) { |
| a3f7ecae | 439 | // Drupal 7 should use a $title variable instead of $block->subject. |
| b6e4708e | 440 | $variables['title'] = $variables['block']->subject; |
| a3f7ecae | 441 | } |
| 288001f7 J |
442 | |
| 443 | /** | |
| 444 | * Implements hook_page_alter(). | |
| 445 | * | |
| 446 | * Look for the last block in the region. This is impossible to determine from | |
| 447 | * within a preprocess_block function. | |
| 448 | * | |
| 449 | * @param $page | |
| 450 | * Nested array of renderable elements that make up the page. | |
| 451 | */ | |
| 452 | function zen_page_alter(&$page) { | |
| 453 | // Look in each visible region for blocks. | |
| 454 | foreach (system_region_list($GLOBALS['theme'], REGIONS_VISIBLE) as $region => $name) { | |
| 455 | if (!empty($page[$region])) { | |
| 456 | // Find the last block in the region. | |
| 457 | $blocks = array_reverse(element_children($page[$region])); | |
| 458 | while ($blocks && !isset($page[$region][$blocks[0]]['#block'])) { | |
| 459 | array_shift($blocks); | |
| 460 | } | |
| 461 | if ($blocks) { | |
| 462 | $page[$region][$blocks[0]]['#block']->last_in_region = TRUE; | |
| 463 | } | |
| 464 | } | |
| 465 | } | |
| 466 | } | |
| e63ff516 J |
467 | |
| 468 | /** | |
| 469 | * Implements hook_form_BASE_FORM_ID_alter(). | |
| 470 | * | |
| 471 | * Prevent user-facing field styling from screwing up node edit forms by | |
| 472 | * renaming the classes on the node edit form's field wrappers. | |
| 473 | */ | |
| 474 | function zen_form_node_form_alter(&$form, &$form_state, $form_id) { | |
| 475 | // Remove if #1245218 is backported to D7 core. | |
| 476 | foreach (array_keys($form) as $item) { | |
| 477 | if (strpos($item, 'field_') === 0) { | |
| 478 | if (!empty($form[$item]['#attributes']['class'])) { | |
| 479 | foreach ($form[$item]['#attributes']['class'] as &$class) { | |
| 480 | if (strpos($class, 'field-type-') === 0 || strpos($class, 'field-name-') === 0) { | |
| 481 | // Make the class different from that used in theme_field(). | |
| 482 | $class = 'form-' . $class; | |
| 483 | } | |
| 484 | } | |
| 485 | } | |
| 486 | } | |
| 487 | } | |
| 488 | } |