diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-10-29 10:30:15 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-10-29 10:30:15 -0200 |
commit | fb951546d0e88063b8bb4cfb986bd12bea33f58b (patch) | |
tree | 3b5277a8822bf3e6a4b566ed5ec9d705f4e3ed99 /drupal7_theme_methods.php | |
parent | eac7d74c809f6297c953823222708d997f342b01 (diff) | |
download | nuvemdario-fb951546d0e88063b8bb4cfb986bd12bea33f58b.tar.gz nuvemdario-fb951546d0e88063b8bb4cfb986bd12bea33f58b.tar.bz2 |
Custom common methods
Diffstat (limited to 'drupal7_theme_methods.php')
-rw-r--r-- | drupal7_theme_methods.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drupal7_theme_methods.php b/drupal7_theme_methods.php index 293ba48..eb0da4c 100644 --- a/drupal7_theme_methods.php +++ b/drupal7_theme_methods.php @@ -213,7 +213,7 @@ function nuvemdario_links_woker_D7($content) { $terms = get_terms_D7($content); if (!empty($terms)) { ob_start();?> - <img class="b2-metadata-icon" src="<?php echo get_full_path_to_theme(); ?>/images/posttagicon.png" width="16" height="16" alt="" /> <?php + <img class="b2-metadata-icon" src="<?php echo nuvemdario_get_full_path_to_theme(); ?>/images/posttagicon.png" width="16" height="16" alt="" /> <?php $result .= ($result == '') ? ob_get_clean() : ' | ' . ob_get_clean(); $result .= '<div class="b2-tags">' . render($terms) . '</div>'; } @@ -277,7 +277,7 @@ if (strpos ($key, "comment") !== FALSE) { $output .= ' | '; } ob_start();?> - <img class="b2-metadata-icon" src="<?php echo get_full_path_to_theme(); ?>/images/postcommentsicon.png" width="16" height="16" alt="" /> <?php + <img class="b2-metadata-icon" src="<?php echo nuvemdario_get_full_path_to_theme(); ?>/images/postcommentsicon.png" width="16" height="16" alt="" /> <?php $output .= ob_get_clean(); $output .= $link_output; $index++; @@ -288,7 +288,7 @@ if ($index > 0 && !empty($link_output) && !empty($output)) { $output .= ' | '; } ob_start();?> - <img class="b2-metadata-icon" src="<?php echo get_full_path_to_theme(); ?>/images/postcategoryicon.png" width="16" height="16" alt="" /> <?php + <img class="b2-metadata-icon" src="<?php echo nuvemdario_get_full_path_to_theme(); ?>/images/postcategoryicon.png" width="16" height="16" alt="" /> <?php $output .= ob_get_clean(); $output .= $link_output; $index++; |