From 39dd802388d44e809d0c489f02c070f4ff4988f6 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Thu, 29 Oct 2015 10:45:09 -0200 Subject: Nuvemdario to nuvemwidget --- 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 fb7d7e6..101ead4 100644 --- a/drupal6_theme_methods.php +++ b/drupal6_theme_methods.php @@ -16,7 +16,7 @@ function phptemplate_preprocess_page(&$vars) { * @ingroup themeable */ -function nuvemdario_menu_local_task($link, $active = FALSE) { +function nuvemwidget_menu_local_task($link, $active = FALSE) { $active_class = ""; if ($active) { $active_class .= "active "; @@ -37,14 +37,14 @@ function nuvemdario_menu_local_task($link, $active = FALSE) { * @param $title * A descriptive title of the feed. */ -function nuvemdario_feed_icon($url, $title) { +function nuvemwidget_feed_icon($url, $title) { return ''; } /** * Add a "Comments" heading above comments except on forum pages. */ -function nuvemdario_preprocess_comment_wrapper(&$vars) { +function nuvemwidget_preprocess_comment_wrapper(&$vars) { if (!isset($vars['content'])) return; ob_start();?> @@ -87,13 +87,13 @@ function nuvemdario_preprocess_comment_wrapper(&$vars) { /** * Allow themable wrapping of all breadcrumbs. */ -function nuvemdario_breadcrumb($breadcrumb) { +function nuvemwidget_breadcrumb($breadcrumb) { if (!empty($breadcrumb)) { return '
'. implode(' | ', $breadcrumb) .'
'; } } -function nuvemdario_service_links_node_format($links) { +function nuvemwidget_service_links_node_format($links) { return ''; } @@ -102,7 +102,7 @@ function nuvemdario_service_links_node_format($links) { * * @ingroup themeable */ -function nuvemdario_button($element) { +function nuvemwidget_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 nuvemdario_button($element) { * Image assist module support. * Added Artisteer styles in IE */ -function nuvemdario_img_assist_page($content, $attributes = NULL) { +function nuvemwidget_img_assist_page($content, $attributes = NULL) { $title = drupal_get_title(); $output = ''."\n"; $output .= ''."\n"; @@ -196,7 +196,7 @@ function nuvemdario_img_assist_page($content, $attributes = NULL) { * * @ingroup themeable */ -function nuvemdario_node_preview($node) { +function nuvemwidget_node_preview($node) { $output = '
'; $preview_trimmed_version = FALSE; -- cgit v1.2.3