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 /template.php | |
parent | 831f5eb7448000bb9a947544abf8d93325425734 (diff) | |
download | nuvemdario-49e903820067403db97d5abc260af274887870f3.tar.gz nuvemdario-49e903820067403db97d5abc260af274887870f3.tar.bz2 |
Rename stuff to nuvemdario_
Diffstat (limited to 'template.php')
-rw-r--r-- | template.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/template.php b/template.php index 7c4df68..1276114 100644 --- a/template.php +++ b/template.php @@ -34,10 +34,10 @@ function get_full_path_to_theme() { return base_path().path_to_theme(); } -function get_artx_drupal_view() { +function get_nuvemdario_drupal_view() { if (get_drupal_version() == 7) - return new artx_view_drupal7(); - return new artx_view_drupal56(); + return new nuvemdario_view_drupal7(); + return new nuvemdario_view_drupal56(); } if (!function_exists('render')) { @@ -46,7 +46,7 @@ if (!function_exists('render')) { } } -class artx_view_drupal56 { +class nuvemdario_view_drupal56 { function print_head($vars) { foreach (array_keys($vars) as $name) @@ -130,7 +130,7 @@ class artx_view_drupal56 { } -class artx_view_drupal7 { +class nuvemdario_view_drupal7 { function print_head($vars) { print render($vars['page']['header']); |