A lot rewrites from double-quote to single-quote, some fixes for extension handling...
[mailer.git] / inc / libs / rallye_functions.php
index 5f83e14adb02a01323a6592f662192fd766041c9..9b466ebb962bd859d42a3764b69c6fc3e4967dfc 100644 (file)
@@ -112,7 +112,7 @@ VALUES ('%s','%s','%s','%s')",
                $DATA['refs']  = $cnt;
 
                // Shall I notify this member?
-               if (($notify == "Y") && ($un)) {
+               if (($notify == 'Y') && ($un)) {
                        // Load email template and send it to the user
                        $msg = LOAD_EMAIL_TEMPLATE("member_rallye_notify", array('prices' => $prices), $content['userid']);
                        SEND_EMAIL($content['userid'], sprintf(getMessage('RALLYE_MEMBER_NOTIFY'), $title), $msg);
@@ -121,7 +121,7 @@ VALUES ('%s','%s','%s','%s')",
 
        // Choose the right admin template
        $templ = "admin_rallye_no_notify";
-       if ($notify == "Y") $templ = "admin_rallye_notify";
+       if ($notify == 'Y') $templ = "admin_rallye_notify";
 
        // Send email to admin
        SEND_ADMIN_NOTIFICATION(sprintf(getMessage('RALLYE_ADMIN_NOTIFY'), $title), $templ, $prices, "0");
@@ -130,11 +130,11 @@ VALUES ('%s','%s','%s','%s')",
        SQL_FREERESULT($result_user);
 }
 //
-function RALLYE_ADD_PRICES ($rallye, $mode="email") {
+function RALLYE_ADD_PRICES ($rallye, $mode='email') {
        // Output mode
        switch($mode) {
-               case "email": $mode = "\n";     break;
-               case "html" : $mode = "<br />\n"; break;
+               case 'email': $mode = "\n";     break;
+               case 'html' : $mode = "<br />\n"; break;
        }
 
        // Load prices
@@ -142,7 +142,7 @@ function RALLYE_ADD_PRICES ($rallye, $mode="email") {
        if (SQL_NUMROWS($result_prices) > 0) {
                // Load prices
                if ($mode == "\n") $prices = "{--RALLYE_MEMBER_PRICES_ADDED--}:".$mode."------------------------------".$mode;
-               $prices = "";
+               $prices = '';
                while ($content = SQL_FETCHARRAY($result_prices)) {
                        $prices .= $content['price_level'].getMessage('RALLYE_PRICE').": ";
                        if (!empty($content['info'])) {
@@ -208,7 +208,7 @@ LIMIT 1", array(bigintval($content['userid']), getConfig('ref_payout')), __FUNCT
                $_uid = "---";
                // List only users with at least one ref!
                //* DEBUG: */ echo "*".$cnt."/".$content['userid']."/".$content['curr_points']."/".$refpoints."*<br />\n";
-               if (($cnt > 0) && ($refpoints > $content['curr_points'])) { $_uid = $content['userid']; } else { $cnt = ""; }
+               if (($cnt > 0) && ($refpoints > $content['curr_points'])) { $_uid = $content['userid']; } else { $cnt = ''; }
 
                // Save values to array
                $DATA['uid'][]     = $_uid;
@@ -254,10 +254,10 @@ LIMIT 1", array(bigintval($content['userid']), getConfig('ref_payout')), __FUNCT
 // Run this function only when a new member has confirmed his email address!
 function RALLYE_AUTOADD_USER ($uid) {
        global $DATA;
-       $add = "";
+       $add = '';
 
        // Updated extension?
-       if (GET_EXT_VERSION("rallye") >= "0.2.0") {
+       if (GET_EXT_VERSION('rallye') >= '0.2.0') {
                $add .= ", min_users, min_prices";
        } // END - if
 
@@ -267,7 +267,7 @@ function RALLYE_AUTOADD_USER ($uid) {
                // Init variables
                $min_users = 0; $min_prices = 0;
                // Load data
-               if (GET_EXT_VERSION("rallye") >= "0.2.0") {
+               if (GET_EXT_VERSION('rallye') >= '0.2.0') {
                        list($id, $title, $start, $end, $notify, $min_users, $min_prices) = SQL_FETCHROW($result);
                } else {
                        list($id, $title, $start, $end, $notify) = SQL_FETCHROW($result);
@@ -291,7 +291,7 @@ VALUES ('%s','%s','0')",
                        SQL_FREERESULT($result);
                }
 
-               if ($notify == "Y") {
+               if ($notify == 'Y') {
                        // Transfer all neccessary data to the global $DATA array
                        $DATA['start'] = MAKE_DATETIME($start, "2");
                        $DATA['end']   = MAKE_DATETIME($end  , "2");
@@ -299,7 +299,7 @@ VALUES ('%s','%s','0')",
                        $DATA['title'] = $title;
                        $DATA['id']    = $id;  // ID for the rallye details link
                        $DATA['ref']   = 0;
-                       $DATA['refs']  = GET_TOTAL_DATA($uid, "user_data", "userid", "refid", true);
+                       $DATA['refs']  = GET_TOTAL_DATA($uid, "user_data", 'userid', "refid", true);
 
                        // Load prices
                        $prices = RALLYE_ADD_PRICES($id);
@@ -376,7 +376,7 @@ LIMIT 1", array(bigintval($uid)), __FUNCTION__, __LINE__);
                        $DATA['ref']    = $prices['ref'][$key];
 
                        // Default is other
-                       $winnerLevel = "other";
+                       $winnerLevel = 'other';
 
                        // Determine winner level
                        if ($DATA['level'] == 1) {
@@ -395,7 +395,7 @@ LIMIT 1", array(bigintval($uid)), __FUNCTION__, __LINE__);
                                ADD_POINTS_REFSYSTEM("rallye_winner" . $winnerLevel, $uid, $DATA['points'], false, "0", false, "direct");
                        } // END - if
 
-                       if ($notify == "Y") {
+                       if ($notify == 'Y') {
                                // Prepare infos for the mail template
                                if (!empty($DATA['info'])) {
                                        // Take direct infos
@@ -421,7 +421,7 @@ LIMIT 1", array(bigintval($uid)), __FUNCTION__, __LINE__);
        } // END - foreach
 
        // Select template depending on notfication is switch on / off
-       if ($notify == "Y") {
+       if ($notify == 'Y') {
                $templ = "admin_rallye_expired";
        } elseif (is_array($users['uid'])) {
                $templ = "admin_rallye_expired_no";
@@ -445,7 +445,7 @@ function RALLYE_LOAD_USER_DATA ($uids_array) {
        $uid_string = implode(",", $uids_array['uid']);
 
        // Init result string
-       $ret = "";
+       $ret = '';
 
        // Load users
        $result = SQL_QUERY_ESC("SELECT userid, gender, surname, family, email FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid IN(%s) AND `status`='CONFIRMED' ORDER BY userid LIMIT %s",
@@ -594,7 +594,7 @@ function RALLYE_LIST_WINNERS ($rallye, $default=0) {
                }
 
                // Add row
-               $add = "";
+               $add = '';
                $OUT .= "<tr>
   <td class=\"switch_sw".$SW." bottom2".$add."\">&nbsp;&nbsp;".($idx+1).".</td>
   <td align=\"center\" class=\"switch_sw".$SW." bottom2".$add."\">";
@@ -647,7 +647,7 @@ WHERE end_time <= (UNIX_TIMESTAMP() - %s) AND expired='Y'",
                        $DATA['now_t']  = MAKE_DATETIME(time(), "1");
 
                        // Send mail to admin
-                       SEND_ADMIN_NOTIFICATION(sprintf(getMessage('RALLYE_ADMIN_PURGED_SUBJ'), $content['title']), "admin_rallye_purged", "", 0);
+                       SEND_ADMIN_NOTIFICATION(sprintf(getMessage('RALLYE_ADMIN_PURGED_SUBJ'), $content['title']), "admin_rallye_purged", '', 0);
 
                        // Purge whole rallye
                        ADD_SQL(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_rallye_data` WHERE id=%s LIMIT 1",
@@ -675,7 +675,7 @@ VALUES ('NEW','RALLYE_PURGED','{--RALLYE_ADMIN_PURGED--}: %s','{--RALLYE_ADMIN_P
 //
 function RALLYE_TEMPLATE_SELECTION ($name="template", $default="") {
        // Check templates directory
-       $OUT = ""; $ral = array();
+       $OUT = ''; $ral = array();
        $BASE = sprintf("%stemplates/%s/html/rallye/", constant('PATH'), GET_LANGUAGE());
        $dir = opendir($BASE);
        while ($read = readdir($dir)) {
@@ -716,7 +716,7 @@ function RALLYE_TEMPLATE_SELECTION ($name="template", $default="") {
 //
 function RALLYE_GET_REFCOUNT ($uid, $old=0) {
        // Check current refs
-       if (GET_EXT_VERSION("cache") >= "0.1.2") {
+       if (GET_EXT_VERSION('cache') >= '0.1.2') {
                // Get refs from cache
                $cnt = 0;
                foreach ($GLOBALS['cache_array']['refsystem']['userid'] as $id => $uid) {