]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/guest/action-themes.php
Added update_year.sh (still not fully flexible) and updated all years with it.
[mailer.git] / inc / modules / guest / action-themes.php
index c35eaacc6025e508aaf81804a19135fea1fb136c..00b40a12dfd5d5883a3595afd24113aa38526499 100644 (file)
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Theme-Auswahl                                    *
  * -------------------------------------------------------------------- *
- * $Revision::                                                        $ *
- * $Date::                                                            $ *
- * $Tag:: 0.2.1-FINAL                                                 $ *
- * $Author::                                                          $ *
- * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * Copyright (c) 2009 - 2015 by Mailer Developer Team                   *
  * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -51,10 +46,10 @@ if ((!isExtensionActive('theme')) && (!isAdmin())) {
 // Get total num
 if (isAdmin()) {
        // Load all themes for admin
-       $num_themes = countSumTotalData('', 'themes', 'id', '', true);
+       $num_themes = countSumTotalData('', 'themes', 'id', '', TRUE);
 } else {
        // Load only active designs for user
-       $num_themes = countSumTotalData('Y', 'themes', 'id', 'theme_active', true);
+       $num_themes = countSumTotalData('Y', 'themes', 'id', 'theme_active', TRUE);
 }
 
 // Default is no box
@@ -66,14 +61,14 @@ if ($num_themes > 1) {
        $OUT = generateThemeSelectionBox();
 } elseif (($num_themes == 1) || ((!isAdmin()) && ($num_themes == '0'))) {
        // If there's only one just output it's name
-       $OUT = loadTemplate('theme_one', true, getCurrentThemeName());
+       $OUT = loadTemplate('theme_one', TRUE, getCurrentThemeName());
 } elseif (isAdmin()) {
        // If there is no theme installed and there's an admin notify him!
        $OUT = '{--ADMIN_NO_THEME_INSTALLED_WARNING--}';
 }
 
 // Load final box template
-$GLOBALS['rows'] .= loadTemplate('theme_select_box', true, $OUT);
+$GLOBALS['rows'] .= loadTemplate('theme_select_box', TRUE, $OUT);
 
 // [EOF]
 ?>