' . $variables['tree'] . ''; } /** * Sets the body-tag class attribute. * * Adds 'sidebar-left', 'sidebar-right' or 'sidebars' classes as needed. function sandium_body_classes($top_left, $top_right, $top_center) { if ($top_left != '' && $top_right != '' && $top_center != '') { $class = 'sidebars'; } else { if ($top_left != '') { $class = 'sidebar-left'; } if ($top_right != '') { $class = 'sidebar-right'; } if ($top_center != '') { $class = 'sidebar-center'; } } if (isset($class)) { print ' class="'. $class .'"'; } } */ /** * Return a themed breadcrumb trail. * * @param $breadcrumb * An array containing the breadcrumb links. * @return a string containing the breadcrumb output. */ function sandium_breadcrumb($breadcrumb) { if (!empty($breadcrumb)) { return ''; } } /** * Override or insert PHPTemplate variables into the templates. */ function sandium_preprocess_page(&$vars) { $vars['tabs2'] = menu_secondary_local_tasks(); // Hook into color.module if (module_exists('color')) { _color_page_alter($vars); } } /** * Add a "Comments" heading above comments except on forum pages. */ function garland_preprocess_comment_wrapper(&$vars) { if ($vars['content'] && $vars['node']->type != 'forum') { $vars['content'] = '

'. t('Comments') .'

'. $vars['content']; } } /** * Returns the rendered local tasks. The default implementation renders * them as tabs. Overridden to split the secondary tasks. * * @ingroup themeable */ function sandium_menu_local_tasks() { return menu_primary_local_tasks(); } function sandium_comment_submitted($comment) { return t('!datetime — !username', array( '!username' => theme('username', $comment), '!datetime' => format_date($comment->timestamp) )); } function sandium_node_submitted($node) { return t('!datetime — !username', array( '!username' => theme('username', $node), '!datetime' => format_date($node->created), )); } /** * Generates IE CSS links for LTR and RTL languages. */ function sandium_get_ie_styles() { global $language; $iecss = ''; if ($language->direction == LANGUAGE_RTL) { $iecss .= ''; } return $iecss; }