]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/booking_functions.php
Opps, not all elements for sprintf() has been set.
[mailer.git] / inc / libs / booking_functions.php
index b6289ef40227500593ce043b341a3fd7fe01ddcd..758dc7d847407294c885a88c041bca3705f3c2d9 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 11/26/2008 *
- * ===============                              Last change: 11/26/2008 *
+ * Mailer v0.2.1-FINAL                                Start: 11/26/2008 *
+ * ===================                          Last change: 11/26/2008 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : booking_functions.php                            *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Funktionen fuer booking-Erweiterung              *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009 - 2013 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')) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
-       require($INC);
-}
-
+       die();
+} // END - if
 
-// Add a record entry ("mode" can be add/sub!)
-function ADD_BOOKING_RECORD ($subject, $uid, $points, $mode) {
-       // Is the sql_patches updated?
-       if (EXT_VERSION_IS_OLDER("sql_patches", "0.5.7")) {
+// Add a record entry ('pointsMode' can be add/sub!)
+function addBookingRecord ($subject, $userid, $points, $pointsMode, $accountType) {
+       // Is the ext-sql_patches updated?
+       if (isExtensionInstalledAndOlder('sql_patches', '0.5.7')) {
                // Abort here
                return;
        } // END - if
 
        // Add record entry here
-       SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_user_book` (`userid`,`subject`,`mode`,`points`) VALUES(%s,'%s','%s',%s)",
-               array($uid, $subject, $mode, $points), __FUNCTION__, __LINE__);
+       sqlQueryEscaped("INSERT INTO `{?_MYSQL_PREFIX?}_user_booking` (`userid`, `subject`, `points_mode`, `points_account_type`, `points`) VALUES (%s, '%s', '%s', '%s', %s)",
+               array(
+                       bigintval($userid),
+                       $subject,
+                       strtoupper($pointsMode),
+                       strtoupper($accountType),
+                       $points
+               ), __FUNCTION__, __LINE__);
 }
 
 // [EOF]