]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/guest/what-sponsor_infos.php
Rewrote a lot parts to extract 'payments' table (+ handling) into own extension:
[mailer.git] / inc / modules / guest / what-sponsor_infos.php
index c9fc49266b9bd465d346ec6624586683b4bc94d6..77d4b26997ef2b3c8284611e4e673da375ef46c0 100644 (file)
@@ -16,8 +16,8 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
 
 // Some security stuff...
 if (!defined('__SECURITY')) {
-       die();
+       exit();
 } // END - if
 
 // Add description as navigation point
-addMenuDescription('guest', __FILE__);
+addYouAreHereLink('guest', __FILE__);
 
 if ((!isExtensionActive('sponsor'))) {
-       loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('sponsor'));
+       displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=sponsor%}');
        return;
 } // END - if
 
 // Init both results (see footer of this file)
-$result_act = false;
-$result_pay = false;
+$result_act = FALSE;
+$result_pay = FALSE;
+
+// ... and output variables
+$OUT_ACT = '';
+$OUT_PAY = '';
 
 // Load all sponsor actions
 $result_act = SQL_QUERY("SELECT
-       m.title AS `conv_title`, c.conv_rate, c.conv_name
+       `m`.`title` AS `conv_title`,
+       `c`.`conv_rate`,
+       `c`.`conv_name`
 FROM
-       `{?_MYSQL_PREFIX?}_sponsor_menu` AS m
+       `{?_MYSQL_PREFIX?}_sponsor_menu` AS `m`
 LEFT JOIN
-       `{?_MYSQL_PREFIX?}_sponsor_action_convert` AS c
+       `{?_MYSQL_PREFIX?}_sponsor_action_convert` AS `c`
 ON
-       m.what=c.ext_name
+       `m`.`what`=`c`.`ext_name`
 LEFT JOIN
-       `{?_MYSQL_PREFIX?}_sponsor_registry` AS r
+       `{?_MYSQL_PREFIX?}_sponsor_registry` AS `r`
 ON
-       m.what=r.ext_name
+       `m`.`what`=`r`.`ext_name`
 WHERE
-       m.`action`='actions' AND
-       r.is_active='Y'
+       `m`.`action`='actions' AND
+       `r`.`is_active`='Y'
 ORDER BY
-       m.sort ASC", __FILE__, __LINE__);
+       `m`.`sort` ASC", __FILE__, __LINE__);
 
 if (!SQL_HASZERONUMS($result_act)) {
        // Load all actions
-       $OUT_ACT = '';
        while ($content = SQL_FETCHARRAY($result_act)) {
                // Load row template and switch color
-               $OUT_ACT .= loadTemplate('guest_sponsor_act_row', true, $content);
+               $OUT_ACT .= loadTemplate('guest_sponsor_act_row', TRUE, $content);
        } // END - while
 
        // Check for pay types
        $result_pay = SQL_QUERY('SELECT `pay_name`, `pay_rate`, `pay_min_count`, `pay_currency` FROM `{?_MYSQL_PREFIX?}_sponsor_paytypes` ORDER BY `pay_name` ASC', __FILE__, __LINE__);
        if (!SQL_HASZERONUMS($result_pay)) {
                // Load all pay types
-               $OUT_PAY = '';
                while ($content = SQL_FETCHARRAY($result_pay)) {
                        // Load row template and switch color
-                       $OUT_PAY .= loadTemplate('guest_sponsor_pay_row', true, $content);
+                       $OUT_PAY .= loadTemplate('guest_sponsor_pay_row', TRUE, $content);
                } // END - while
        } else {
                // No pay types setuped so far!
-               $OUT_PAY = loadTemplate('guest_sponsor_infos_none_row', false, loadTemplate('admin_settings_saved', true, '{--SPONSOR_NO_ACTIONS_ACTIVATED--}'));
+               $OUT_PAY = loadTemplate('guest_sponsor_infos_none_row', TRUE, displayMessage('{--SPONSOR_NO_ACTIONS_ACTIVATED--}', TRUE));
        }
 } else {
        // No actions activated so far!
-       $OUT_ACT = loadTemplate('guest_sponsor_infos_none_row', true, loadTemplate('admin_settings_saved', true, '{--SPONSOR_NO_ACTIONS_ACTIVATED--}'));
-       $OUT_PAY = loadTemplate('guest_sponsor_infos_none_row', true, loadTemplate('admin_settings_saved', true, '{--SPONSOR_NO_ACTIONS_ACTIVATED--}'));
+       $OUT_ACT = loadTemplate('guest_sponsor_infos_none_row', TRUE, displayMessage('{--SPONSOR_NO_ACTIONS_ACTIVATED--}', TRUE));
+       $OUT_PAY = loadTemplate('guest_sponsor_infos_none_row', TRUE, displayMessage('{--SPONSOR_NO_ACTIONS_ACTIVATED--}', TRUE));
 }
 
 // Free memory
@@ -109,7 +113,7 @@ $content = array(
 );
 
 // Load main template
-loadTemplate('guest_sponsor_infos', false, $content);
+loadTemplate('guest_sponsor_infos', FALSE, $content);
 
 // [EOF]
 ?>