diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-10-29 10:24:58 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-10-29 10:24:58 -0200 |
commit | 49e903820067403db97d5abc260af274887870f3 (patch) | |
tree | f324316a8f8811b6703c16e968ccc0e93cddad72 /templates | |
parent | 831f5eb7448000bb9a947544abf8d93325425734 (diff) | |
download | nuvemdario-49e903820067403db97d5abc260af274887870f3.tar.gz nuvemdario-49e903820067403db97d5abc260af274887870f3.tar.bz2 |
Rename stuff to nuvemdario_
Diffstat (limited to 'templates')
-rw-r--r-- | templates/comment-wrapper.tpl.php | 4 | ||||
-rw-r--r-- | templates/region.tpl.php | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/templates/comment-wrapper.tpl.php b/templates/comment-wrapper.tpl.php index adfce58..1d537e3 100644 --- a/templates/comment-wrapper.tpl.php +++ b/templates/comment-wrapper.tpl.php @@ -1,5 +1,5 @@ <?php $vars = get_defined_vars(); - $view = get_artx_drupal_view(); + $view = get_nuvemdario_drupal_view(); $view->print_comment_wrapper($vars); -?>
\ No newline at end of file +?> diff --git a/templates/region.tpl.php b/templates/region.tpl.php index 08cd625..c7b2149 100644 --- a/templates/region.tpl.php +++ b/templates/region.tpl.php @@ -2,7 +2,7 @@ <div class="<?php print $classes; ?>"> <?php switch ($region) { case "navigation": - print art_menu_worker($content, true, 'b2-hmenu'); + print nuvemdario_menu_worker($content, true, 'b2-hmenu'); break; case "vnavigation_left": case "vnavigation_right": @@ -13,7 +13,7 @@ foreach (array_keys($variables['elements']) as $name) { && isset($element['#children']) && is_string($element['#children']) && !empty($element['#children'])) { $block_subject = $element['#block']->subject; $block_content = $element['#children']; - art_vmenu_output($block_subject, $block_content); } + nuvemdario_vmenu_output($block_subject, $block_content); } } break; @@ -22,4 +22,4 @@ foreach (array_keys($variables['elements']) as $name) { break; }?> </div> -<?php endif; ?>
\ No newline at end of file +<?php endif; ?> |