- \n";
foreach ($messages as $message) {
$output .= '
- ' . $message . " \n"; } $output .= "
CSS_THEME, 'browsers' => array('IE' => 'lte IE 7', '!IE' => FALSE), 'preprocess' => FALSE)); } /** * Implements template_preprocess_page(). */ function muambeiro_preprocess_page(&$vars) { // Shorten the sidebar variable names. $sidebar_1 = $vars['page']['sidebar_first']; $sidebar_2 = $vars['page']['sidebar_second']; // Grid size for sidebars for 2-column layout. $width = 4; // Grid size for sidebars for 3-column layout. if (!empty($sidebar_1) && !empty($sidebar_2)) { $width = 3; } // Define grid classes for page.tpl.php $vars['content_grid_classes'] = muambeiro_ns('grid-16', $sidebar_1, $width, $sidebar_2, $width) . ' ' . muambeiro_ns('push-' . $width, !$sidebar_1, $width); $vars['sidebar_first_grid_classes'] = 'grid-' . $width . ' ' . muambeiro_ns('pull-' . (16 - $width), $sidebar_2, $width); $vars['sidebar_second_grid_classes'] = 'grid-' . $width; // Add text for unpublished nodes. if (isset($vars['node']) && $vars['node']->status == 0) { $vars['title'] = drupal_get_title() . ' (' . t('Unpublished') . ')'; } // See https://drupal.org/node/836160#comment-5026414 if (isset($_GET['template']) && $_GET['template'] == 'colorbox') { $vars['theme_hook_suggestions'][] = 'page__colorbox'; } } /** * Implements template_process_html(). */ function muambeiro_process_html(&$vars) { // Apply color module scheme. if (module_exists('color')) { _color_html_alter($vars); } } /** * Implements template_preprocess_region(). */ function muambeiro_preprocess_region(&$vars) { // Grid classes. if ($vars['region'] == 'header') { $vars['classes_array'][] = 'grid-6'; } if ($vars['region'] == 'copyright' || $vars['region'] == 'navigation') { $vars['classes_array'][] = 'grid-16'; $vars['classes_array'][] = 'alpha'; $vars['classes_array'][] = 'omega'; } if ($vars['region'] == 'collapsible') { $vars['classes_array'][] = 'container-16'; } } /** * Implements template_preprocess_node(). */ function muambeiro_preprocess_node(&$vars) { // Add decent classes for node titles. $vars['title_attributes_array']['class'][] = 'title'; $vars['title_attributes_array']['class'][] = 'node-title'; // Add the article ARIA role. $vars['attributes_array']['role'] = 'article'; } /** * Implements template_preprocess_block(). */ function muambeiro_preprocess_block(&$vars) { // Add decent classes for block titles. $vars['title_attributes_array']['class'][] = 'title'; $vars['title_attributes_array']['class'][] = 'block-title'; // Flag the first block in each region. if ($vars['block_id'] == 1) { $vars['classes_array'][] = 'first'; } // Hide the block titles in the header by default. if ($vars['block']->region == 'navigation') { $vars['title_attributes_array']['class'][] = 'element-invisible'; } } /** * Implements hook_html_head_alter(). * Overwrite the default meta character type tag with HTML5 version. */ function muambeiro_html_head_alter(&$head_elements) { // Modify the meta tag for HTML5. $head_elements['system_meta_content_type']['#attributes'] = array( 'charset' => 'utf-8', ); // Force IE to always run the latest rendering engine. $head_elements['muambeiro_edge_chrome'] = array( '#type' => 'html_tag', '#tag' => 'meta', '#attributes' => array('http-equiv' => 'X-UA-Compatible', 'content' => 'IE=edge,chrome=1'), ); } /** * Implements hook_css_alter(). */ function muambeiro_css_alter(&$css) { $path = drupal_get_path('theme', 'muambeiro'); // Remove some core default stylesheets. unset($css[drupal_get_path('module', 'system') . '/system.menus.css']); unset($css[drupal_get_path('module', 'system') . '/system.messages.css']); unset($css[drupal_get_path('module', 'system') . '/system.theme.css']); unset($css[drupal_get_path('module', 'node') . '/node.css']); unset($css[drupal_get_path('module', 'aggregator') . '/aggregator.css']); // Use the theme's version of user.css. $user_css = drupal_get_path('module', 'user') . '/user.css'; if (isset($css[$user_css])) { $css[$user_css]['data'] = $path . '/css/user.css'; } // Use the theme's version of book.css. $book_css = drupal_get_path('module', 'book') . '/book.css'; if (isset($css[$book_css])) { $css[$book_css]['data'] = $path . '/css/book.css'; } // Use the theme's version of search.css. $search_css = drupal_get_path('module', 'search') . '/search.css'; if (isset($css[$search_css])) { $css[$search_css]['data'] = $path . '/css/search.css'; } // Use the theme's version of jquery.ui.theme.css. if (isset($css['misc/ui/jquery.ui.theme.css'])) { $css['misc/ui/jquery.ui.theme.css']['data'] = $path . '/css/jquery.ui.theme.css'; } } /** * Implements hook_page_alter(). */ function muambeiro_page_alter(&$page) { // Remove the block template wrapper from the main content block. if (!empty($page['content']['system_main'])) { $page['content']['system_main']['#theme_wrappers'] = array_diff($page['content']['system_main']['#theme_wrappers'], array('block')); } // Remove sidebars on administrative pages. if (arg(0) == 'admin') { unset($page['sidebar_first']); unset($page['sidebar_second']); } } /** * Overrides theme_status_messages(). * Shows the message headers instead of hiding them. */ function muambeiro_status_messages($variables) { $display = $variables['display']; $output = ''; foreach (drupal_get_messages($display) as $type => $messages) { $output .= "
\n"; } return $output; } /** * Overrides theme_field(). */ function muambeiro_field($variables) { $output = ''; // Render the label, if it's not hidden. if (!$variables['label_hidden']) { $output .= '