From 8eafc9269cba786080626f843879624c2a70d42d Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Wed, 8 Aug 2012 17:48:35 -0300 Subject: Forking to nuvemdario theme --- drupal6_theme_methods.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'drupal6_theme_methods.php') diff --git a/drupal6_theme_methods.php b/drupal6_theme_methods.php index a606bc9..fb7d7e6 100644 --- a/drupal6_theme_methods.php +++ b/drupal6_theme_methods.php @@ -16,7 +16,7 @@ function phptemplate_preprocess_page(&$vars) { * @ingroup themeable */ -function b2_silly_clouds_menu_local_task($link, $active = FALSE) { +function nuvemdario_menu_local_task($link, $active = FALSE) { $active_class = ""; if ($active) { $active_class .= "active "; @@ -37,14 +37,14 @@ function b2_silly_clouds_menu_local_task($link, $active = FALSE) { * @param $title * A descriptive title of the feed. */ -function b2_silly_clouds_feed_icon($url, $title) { +function nuvemdario_feed_icon($url, $title) { return ''; } /** * Add a "Comments" heading above comments except on forum pages. */ -function b2_silly_clouds_preprocess_comment_wrapper(&$vars) { +function nuvemdario_preprocess_comment_wrapper(&$vars) { if (!isset($vars['content'])) return; ob_start();?> @@ -87,13 +87,13 @@ function b2_silly_clouds_preprocess_comment_wrapper(&$vars) { /** * Allow themable wrapping of all breadcrumbs. */ -function b2_silly_clouds_breadcrumb($breadcrumb) { +function nuvemdario_breadcrumb($breadcrumb) { if (!empty($breadcrumb)) { return '
'. implode(' | ', $breadcrumb) .'
'; } } -function b2_silly_clouds_service_links_node_format($links) { +function nuvemdario_service_links_node_format($links) { return ''; } @@ -102,7 +102,7 @@ function b2_silly_clouds_service_links_node_format($links) { * * @ingroup themeable */ -function b2_silly_clouds_button($element) { +function nuvemdario_button($element) { // Make sure not to overwrite classes. if (isset($element['#attributes']['class'])) { $element['#attributes']['class'] = 'form-'.$element['#button_type'].' '.$element['#attributes']['class'].' b2-button'; @@ -123,7 +123,7 @@ function b2_silly_clouds_button($element) { * Image assist module support. * Added Artisteer styles in IE */ -function b2_silly_clouds_img_assist_page($content, $attributes = NULL) { +function nuvemdario_img_assist_page($content, $attributes = NULL) { $title = drupal_get_title(); $output = ''."\n"; $output .= ''."\n"; @@ -196,7 +196,7 @@ function b2_silly_clouds_img_assist_page($content, $attributes = NULL) { * * @ingroup themeable */ -function b2_silly_clouds_node_preview($node) { +function nuvemdario_node_preview($node) { $output = '
'; $preview_trimmed_version = FALSE; -- cgit v1.2.3