2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 10/23/2009 *
4 * =================== Last change: 10/23/2009 *
6 * -------------------------------------------------------------------- *
7 * File : jackpot_functions.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Jackpot functions *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Jackpot-Funktionen *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
17 * -------------------------------------------------------------------- *
18 * Copyright (c) 2003 - 2009 by Roland Haeder *
19 * Copyright (c) 2009 - 2012 by Mailer Developer Team *
20 * For more information visit: http://mxchange.org *
22 * This program is free software; you can redistribute it and/or modify *
23 * it under the terms of the GNU General Public License as published by *
24 * the Free Software Foundation; either version 2 of the License, or *
25 * (at your option) any later version. *
27 * This program is distributed in the hope that it will be useful, *
28 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
29 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
30 * GNU General Public License for more details. *
32 * You should have received a copy of the GNU General Public License *
33 * along with this program; if not, write to the Free Software *
34 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
36 ************************************************************************/
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
44 // Getter for jackpot points
45 function getJackpotPoints () {
47 $data['points'] = '0.00000';
50 $result = SQL_QUERY("SELECT `points` FROM `{?_MYSQL_PREFIX?}_jackpot` WHERE `ok`='ok' LIMIT 1", __FUNCTION__, __LINE__);
53 if (SQL_HASZERONUMS($result)) {
55 SQL_QUERY("INSERT INTO `{?_MYSQL_PREFIX?}_jackpot` (`ok`, `points`) VALUES ('ok','0.00000')", __FUNCTION__, __LINE__);
58 $data = SQL_FETCHARRAY($result);
62 SQL_FREERESULT($result);
65 return $data['points'];
68 // Adds points to the jackpot
69 function addPointsToJackpot ($points) {
70 // Get jackpot points for dummy
71 $jackpot = getJackpotPoints();
74 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_jackpot` SET `points`=`points`+%s WHERE `ok`='ok' LIMIT 1",
75 array($points), __FUNCTION__, __LINE__);
78 // Subtracts points from the jackpot
79 function subtractPointsFromJackpot ($points) {
83 // Get jackpot points for dummy
84 $jackpot = getJackpotPoints();
86 // Enougth points i jackpot?
87 if ($jackpot >= $points) {
88 // Update points when there are enougth points in jackpot
89 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_jackpot` SET `points`=`points`-%s WHERE `ok`='ok' LIMIT 1",
90 array($points), __FUNCTION__, __LINE__);
91 $ret = (!SQL_HASZEROAFFECTED());
95 SQL_FREERESULT($result);