X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fbeg_functions.php;h=120333bf97b708e21424fa031f9b0ebe9c11ad94;hb=ca11996eb52fa0a1ec45d6ab10f5331c4a54a116;hp=ac21a85221bc5ac0263f6abffa261476e88089b0;hpb=19188207e6802b82a134b340408cfa34b9b3a80f;p=mailer.git diff --git a/inc/libs/beg_functions.php b/inc/libs/beg_functions.php index ac21a85221..120333bf97 100644 --- a/inc/libs/beg_functions.php +++ b/inc/libs/beg_functions.php @@ -14,12 +14,10 @@ * $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 - 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 * @@ -44,43 +42,74 @@ if (!defined('__SECURITY')) { // Add points to user or begging rallye account function addPointsBeg ($userid, $points) { + // Default is not added + $added = false; + // Is begging rallye active? if (isBegRallyeEnabled()) { // Add points to rallye account SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `beg_points`=`beg_points`+%s WHERE `userid`=%s LIMIT 1", array($points, $userid), __FUNCTION__, __LINE__); + + // We need to set $add here, two + $added = (!SQL_HASZEROAFFECTED()); } else { // Add points to account - // @TODO Try to rewrite the following unset() - unset($GLOBALS['ref_level']); - addPointsThroughReferalSystem('beg', $userid, $points, false, 0, strtolower(getConfig('beg_mode'))); + initReferralSystem(); + $added = addPointsThroughReferralSystem('beg', $userid, $points); } // Subtract begged points from member account if the admin has selected one - if (getConfig('beg_userid') > 0) { + if (($added === true) && (isValidUserId(getBegUserid()))) { // Subtract from this account - subtractPoints('beg_payout', getConfig('beg_userid'), $points); + $added = ($added && subtractPoints('beg_payout', getBegUserid(), $points)); } // END - if + + // Return result + return $added; } -// Checks wether beg_rallye is enabled -function isBegRallyeEnabled () { +//----------------------------------------------------------------------------- +// Template functions +//----------------------------------------------------------------------------- + +// Outputs points which a member can get +function doTemplateOutputBegPoints ($templateName, $clear = false) { + // Default is not the same + $return = '{--BEG_POINTS_MIN_MAX--}'; + + // Is min/max points the same? + if (getBegPoints() == getBegPointsMax()) { + // Is the same, output different message + $return = '{--BEG_POINTS_FIXED--}'; + } // END - if + + // Return message + return $return; +} + +//----------------------------------------------------------------------------- +// Wrapper functions for ext-beg +//----------------------------------------------------------------------------- + +// "Getter" for beg_new_member_notify +function getBegNewMemberNotify () { // Do we have cache? if (!isset($GLOBALS[__FUNCTION__])) { - // Determine it - $GLOBALS[__FUNCTION__] = ((isExtensionInstalledAndNewer('beg', '0.2.8')) && (getConfig('beg_rallye') == 'Y')); + // Get it + $GLOBALS[__FUNCTION__] = getConfig('beg_new_member_notify'); } // END - if // Return cache return $GLOBALS[__FUNCTION__]; } -// Checks wether beg_rallye is enabled +// Checks whether beg_new_member_notify is enabled function isBegNewMemberNotifyEnabled () { // Do we have cache? if (!isset($GLOBALS[__FUNCTION__])) { // Determine it - $GLOBALS[__FUNCTION__] = ((isExtensionInstalledAndNewer('beg', '0.2.7')) && (getConfig('beg_new_member_notify') == 'Y')); + $GLOBALS[__FUNCTION__] = ((isExtensionInstalledAndNewer('beg', '0.2.7')) && (getBegNewMemberNotify() == 'Y')); } // END - if // Return cache @@ -92,7 +121,235 @@ function getBegUserid () { // Do we have cache? if (!isset($GLOBALS[__FUNCTION__])) { // Get it - $GLOBALS[__FUNCTION__] = getConfig(__FUNCTION__); + $GLOBALS[__FUNCTION__] = getConfig('beg_userid'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// "Getter" for beg_timeout +function getBegTimeout () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = getConfig('beg_timeout'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// "Getter" for beg_userid_timeout +function getBegUseridTimeout () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = getConfig('beg_userid_timeout'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// "Getter" for beg_ip_timeout +function getBegIpTimeout () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = getConfig('beg_ip_timeout'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// "Getter" for beg_ranks +function getBegRanks () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = getConfig('beg_ranks'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// "Getter" for beg_points_max +function getBegPointsMax () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = getConfig('beg_points_max'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// "Getter" for beg_points +function getBegPoints () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = getConfig('beg_points'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// "Getter" for beg_notify_bonus +function getBegNotifyBonus () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = getConfig('beg_notify_bonus'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// "Getter" for beg_notify_wait +function getBegNotifyWait () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = getConfig('beg_notify_wait'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// "Getter" for beg_pay_mode +function getBegPayMode () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = getConfig('beg_pay_mode'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// "Getter" for beg_include_own +function getBegIncludeOwn () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = getConfig('beg_include_own'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// Checks whether beg_include_own is "Y" +function isBegIncludeOwnEnabled () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = (getBegIncludeOwn() == 'Y'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// "Getter" for beg_active +function getBegActive () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = getConfig('beg_active'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// Checks whether beg_active is "Y" +function isBegActiveEnabled () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = (getBegActive() == 'Y'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// "Getter" for beg_rallye +function getBegRallye () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = getConfig('beg_rallye'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// Checks whether beg_rallye is "Y" +function isBegRallyeEnabled () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = (getBegRallye() == 'Y'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// "Getter" for beg_rallye_enable_notify +function getBegRallyeEnableNotify () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = getConfig('beg_rallye_enable_notify'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// Checks whether beg_rallye_enable_notify is "Y" +function isBegRallyeEnableNotifyEnabled () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = (getBegRallyeEnableNotify() == 'Y'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// "Getter" for beg_rallye_disable_notify +function getBegRallyeDisableNotify () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = getConfig('beg_rallye_disable_notify'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// Checks whether beg_rallye_disable_notify is "Y" +function isBegRallyeDisableNotifyEnabled () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = (getBegRallyeDisableNotify() == 'Y'); } // END - if // Return cache