diff options
Diffstat (limited to 'drupal6_theme_methods.php')
-rw-r--r-- | drupal6_theme_methods.php | 16 |
1 files changed, 8 insertions, 8 deletions
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 '<a href="'. check_url($url) .'" class="b2-rss-tag-icon" title="' . $title . '"></a>'; } /** * 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 '<div class="breadcrumb b2-postcontent">'. implode(' | ', $breadcrumb) .'</div>'; } } -function b2_silly_clouds_service_links_node_format($links) { +function nuvemdario_service_links_node_format($links) { return '<div class="service-links"><div class="service-label">'. t('Bookmark/Search this post with: ') .'</div>'. art_links_woker($links) .'</div>'; } @@ -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 = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">'."\n"; $output .= '<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">'."\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 = '<div class="preview">'; $preview_trimmed_version = FALSE; |