X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fbooking_functions.php;h=b50bda89824f6cdc9b6fdbcafd431428781aad07;hb=f2736bc6457140146890877d992be862a78b259f;hp=b6289ef40227500593ce043b341a3fd7fe01ddcd;hpb=b8c86fa12322603c24a88ea2b0fd3dbeba612752;p=mailer.git diff --git a/inc/libs/booking_functions.php b/inc/libs/booking_functions.php index b6289ef402..b50bda8982 100644 --- a/inc/libs/booking_functions.php +++ b/inc/libs/booking_functions.php @@ -10,9 +10,14 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Funktionen fuer booking-Erweiterung * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $Date:: $ * + * $Tag:: 0.2.1-FINAL $ * + * $Author:: $ * + * Needs to be in all Files and every File needs "svn propset * + * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * - * Copyright (c) 2003 - 2008 by Roland Haeder * + * Copyright (c) 2003 - 2009 by Roland Haeder * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -33,22 +38,26 @@ // 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) { +function addBookingRecord ($subject, $userid, $points, $mode) { // Is the sql_patches updated? - if (EXT_VERSION_IS_OLDER("sql_patches", "0.5.7")) { + if (isExtensionOlder('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__); + SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_user_book` (`userid`,`subject`,`mode`,`points`) VALUES(%s,'%s','%s',%s)", + array($userid, $subject, $mode, $points), __FUNCTION__, __LINE__); +} + +// Filter for adding booking record +function FILTER_ADD_BOOKING_RECORD ($data) { + // Add a record + addBookingRecord($data['subject'], $data['userid'], $data['points'], $data['mode']); } // [EOF]