]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/user_functions.php
convertSelectionsToEpocheTimeInPostData() is a wrapper and only needs the POST field...
[mailer.git] / inc / libs / user_functions.php
index 566c762b0c3752b84821dd0849dcd09c4ca36fe9..41c52078e24b3e0dab20157c338c81b2bd6b0a9c 100644 (file)
@@ -77,7 +77,7 @@ function addAlphabeticalSorting ($sortby) {
        );
 
        // Load template
-       $OUT = loadTemplate('admin_list_user_alpha', true, $content);
+       $OUT = loadTemplate('admin_list_user_alpha', TRUE, $content);
 
        // Return generated code
        return $OUT;
@@ -129,7 +129,7 @@ function addSortLinks ($letter, $sortby) {
        $content['list'] = substr($OUT, 0, -1);
 
        // Load template
-       $OUT = loadTemplate('admin_list_user_sort', true, $content);
+       $OUT = loadTemplate('admin_list_user_sort', TRUE, $content);
 
        // Return code
        return $OUT;
@@ -181,7 +181,7 @@ function addPageNavigation ($numPages) {
                $content['list'] = $OUT;
 
                // Load template
-               $OUT = loadTemplate('admin_list_user_pagenav', true, $content);
+               $OUT = loadTemplate('admin_list_user_pagenav', TRUE, $content);
        } // END - if
 
        // Return code
@@ -209,7 +209,7 @@ WHERE
 LIMIT 1",
                array($email), __FUNCTION__, __LINE__);
 
-       // Do we have an entry?
+       // Is there an entry?
        if (SQL_NUMROWS($result) == 1) {
                // Load userid
                list($userid) = SQL_FETCHROW($result);
@@ -233,9 +233,9 @@ function determineRandomReferralId () {
        // Is the extension version fine?
        if ((isRandomReferralIdEnabled()) && (isExtensionInstalledAndNewer('user', '0.3.4'))) {
                // Get all user ids
-               $totalUsers = countSumTotalData('CONFIRMED', 'user_data', 'userid', 'status', true, runFilterChain('user_exclusion_sql', ' AND `rand_confirmed` >= {?user_min_confirmed?}'));
+               $totalUsers = countSumTotalData('CONFIRMED', 'user_data', 'userid', 'status', TRUE, runFilterChain('user_exclusion_sql', ' AND `rand_confirmed` >= {?user_min_confirmed?}'));
 
-               // Do we have at least one?
+               // Is there at least one?
                if ($totalUsers > 0) {
                        // Then choose random userid
                        $randUserid = mt_rand(0, ($totalUsers - 1));
@@ -244,7 +244,7 @@ function determineRandomReferralId () {
                        $result = SQL_QUERY_ESC("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_data` " . runFilterChain('user_exclusion_sql', "WHERE `status`='CONFIRMED'") . ' AND `rand_confirmed` >= {?user_min_confirmed?} ORDER BY `rand_confirmed` DESC LIMIT %s, 1',
                                array($randUserid), __FUNCTION__, __LINE__);
 
-                       // Do we have one entry there?
+                       // Is there one entry there?
                        if (SQL_NUMROWS($result) == 1) {
                                // Use that userid as new referral id
                                list($refid) = SQL_FETCHROW($result);
@@ -269,7 +269,7 @@ function doUserLogin ($userid, $passwd, $successUrl = '', $errorUrl = 'modules.p
        $add = '';
        $errorCode = '0';
        $ext = '';
-       $isFound = false;
+       $isFound = FALSE;
 
        // Init array
        $content = array(
@@ -294,7 +294,7 @@ function doUserLogin ($userid, $passwd, $successUrl = '', $errorUrl = 'modules.p
        }
 
        // No error found?
-       if (($errorCode == '0') && ($isFound === true)) {
+       if (($errorCode == '0') && ($isFound === TRUE)) {
                // Get user data array and set userid (e.g. important if we login with nickname)
                $content = getUserDataArray();
                if (!empty($content['userid'])) {
@@ -327,7 +327,7 @@ function doUserLogin ($userid, $passwd, $successUrl = '', $errorUrl = 'modules.p
                                array($content['hash'], $userid), __FUNCTION__, __LINE__);
 
                        // No login bonus by default
-                       $GLOBALS['bonus_payed'] = false;
+                       $GLOBALS['bonus_payed'] = FALSE;
 
                        // Is bonus up-to-date?
                        if (isExtensionInstalledAndNewer('bonus', '0.2.2')) {
@@ -339,10 +339,10 @@ function doUserLogin ($userid, $passwd, $successUrl = '', $errorUrl = 'modules.p
                                } // END - if
 
                                // Is the timeout reached?
-                               if ($probe >= getConfig('login_timeout')) {
+                               if ($probe >= getLoginTimeout()) {
                                        // Add login bonus to user's account
                                        $add = ',`login_bonus`=`login_bonus`+{?login_bonus?}';
-                                       $GLOBALS['bonus_payed'] = true;
+                                       $GLOBALS['bonus_payed'] = TRUE;
 
                                        // Subtract login bonus from userid's account or jackpot
                                        if ((isExtensionInstalledAndNewer('bonus', '0.3.5')) && (getBonusMode() != 'ADD')) {
@@ -366,7 +366,7 @@ function doUserLogin ($userid, $passwd, $successUrl = '', $errorUrl = 'modules.p
                                        // Is a success URL set?
                                        if (empty($successUrl)) {
                                                // Procedure to checking for login data
-                                               if (($GLOBALS['bonus_payed'] === true) && (isExtensionActive('bonus'))) {
+                                               if (($GLOBALS['bonus_payed'] === TRUE) && (isExtensionActive('bonus'))) {
                                                        // Bonus added (just displaying!)
                                                        $url = 'modules.php?module=chk_login&do=bonus';
                                                } else {
@@ -427,7 +427,7 @@ function doNewUserPassword ($email, $userid) {
        //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'email=' . $email . ',userid=' . $userid . ' - ENTERED!');
        // Init found-status and error
        $errorCode = '';
-       $accountFound = false;
+       $accountFound = FALSE;
 
        // Probe userid/nickname
        if (!empty($email)) {
@@ -439,28 +439,31 @@ function doNewUserPassword ($email, $userid) {
        } elseif ((isValidUserId($userid)) && (empty($email))) {
                // Direct userid entered
                $accountFound = fetchUserData($userid);
-       } else {
+       } elseif (isDebugModeEnabled()) {
                // Userid not set!
                logDebugMessage(__FUNCTION__, __LINE__, 'userid=' . $userid . ',email=' . $email . ': Important variables are empty.');
        }
 
        // Any entry found?
-       if ($accountFound === true) {
+       if ($accountFound === TRUE) {
                // Is the account confirmed
                if (getUserData('status') == 'CONFIRMED') {
                        // Generate new password
-                       $NEW_PASS = generatePassword();
+                       $newPassword = generatePassword();
 
                        // Update database
                        SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `password`='%s' WHERE `userid`=%s LIMIT 1",
-                               array(generateHash($NEW_PASS), getUserData('userid')), __FUNCTION__, __LINE__);
+                               array(
+                                       generateHash($newPassword),
+                                       getUserData('userid')
+                               ), __FUNCTION__, __LINE__);
 
                        // Prepare data and message for email
                        $message = loadEmailTemplate('guest_new_password',
                                array(
-                                       'new_pass' => $NEW_PASS,
+                                       'new_pass' => $newPassword,
                                        'nickname' => $userid
-                               ), bigintval(getUserData('userid')));
+                               ), getUserData('userid'));
 
                        // ... and send it away
                        sendEmail(bigintval(getUserData('userid')), '{--GUEST_NEW_PASSWORD--}', $message);
@@ -534,16 +537,16 @@ function insertUserStatsRecord ($userid, $statsType, $statsData) {
        // Is the extension installed and updated?
        if ((!isExtensionActive('sql_patches')) || (isExtensionInstalledAndOlder('sql_patches', '0.5.6'))) {
                // Return zero here
-               return false;
+               return FALSE;
        } // END - if
 
        // Default is not working
-       $return = false;
+       $return = FALSE;
 
        // Does it exist?
        if ((!getEpocheTimeFromUserStats($statsType, $statsData, $userid)) && (!is_array($statsData))) {
                // Then insert it!
-               SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_user_stats_data` (`userid`,`stats_type`,`stats_data`) VALUES (%s,'%s','%s')",
+               SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_user_stats_data` (`userid`, `stats_type`, `stats_data`) VALUES (%s,'%s','%s')",
                        array(
                                bigintval($userid),
                                $statsType,
@@ -573,7 +576,7 @@ function doConfirmUserAccount ($hash) {
        $userid = NULL;
 
        // Search for an unconfirmed or confirmed account
-       $result = SQL_QUERY_ESC("SELECT `userid`,`refid` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `user_hash`='%s' AND (`status`='UNCONFIRMED' OR `status`='CONFIRMED') LIMIT 1",
+       $result = SQL_QUERY_ESC("SELECT `userid`, `refid` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `user_hash`='%s' AND (`status`='UNCONFIRMED' OR `status`='CONFIRMED') LIMIT 1",
                array($hash), __FILE__, __LINE__);
        if (SQL_NUMROWS($result) == 1) {
                // Ok, he want's to confirm now so we load some data
@@ -622,7 +625,7 @@ LIMIT 1",
                                                        array(bigintval($refid)), __FILE__, __LINE__);
 
                                                // Subtract points from system
-                                               handleBonusPoints(getConfig('bonus_ref'), $refid);
+                                               handleBonusPoints(getBonusRef(), $refid);
                                        } // END - if
 
                                        // Add one-time referral bonus over referral system or directly
@@ -725,10 +728,10 @@ function getConfirmationMessageFromUserStatus ($status) {
 
 // "Getter" for total tester accounts
 function getTotalTesterUsers () {
-       // Do we have cache?
+       // Is there cache?
        if (!isset($GLOBALS[__FUNCTION__])) {
                // Determine it
-               $GLOBALS[__FUNCTION__] = countSumTotalData('', 'user_data', 'userid', '', true, runFilterChain('user_inclusion_sql'));
+               $GLOBALS[__FUNCTION__] = countSumTotalData('', 'user_data', 'userid', '', TRUE, runFilterChain('user_inclusion_sql'));
        } // END - if
 
        // Return cache
@@ -765,7 +768,7 @@ function getNextFreeTesterUserNumber () {
 // Wrapper function to return a selection box for tester user default referral id
 function addTesterUserDefaultRefidSelectionBox ($fieldName = 'tester_user_default_refid') {
        // Return it
-       return addMemberSelectionBox(getConfig('tester_user_default_refid'), false, true, true, $fieldName, " WHERE `surname` LIKE '{?tester_user_surname_prefix?}%'");
+       return addMemberSelectionBox(getConfig('tester_user_default_refid'), FALSE, TRUE, TRUE, $fieldName, " WHERE `surname` LIKE '{?tester_user_surname_prefix?}%'");
 }
 
 // Checks whether given surname is a test user name
@@ -783,7 +786,7 @@ function createTesterUserAccount () {
        if (!isRegistrationDataComplete()) {
                // Then abort here
                //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'isRegistrationDataComplete()=false, please check if you e.g. have selected the required minimum of categories.');
-               return false;
+               return FALSE;
        } // END - if
 
        // Do registration
@@ -796,6 +799,130 @@ function createTesterUserAccount () {
        return $isCreated;
 }
 
+// Checks whether the given sub id is fused by current member
+function isMemberSubIdFree ($subId) {
+       // Only do this for logged-in members
+       assert(isMember());
+
+       // Check it
+       $isFree = (countSumTotalData(getMemberId(), 'user_subids', 'id', 'userid', TRUE, sprintf(" AND `subid`='%s'", $subId)) == 0);
+
+       // Return result
+       return $isFree;
+}
+
+// Checks whether the sub id is valid
+function isValidSubId ($subId) {
+       // First convert any spaces/dashes to underscores
+       $subId = str_replace(' ', '_', str_replace('-', '_', $subId));
+
+       // Then filter out any unwanted characters
+       $subIdTest = preg_replace('/([^a-zA-Z0-9_])/', '', $subId);
+
+       // Is it valid?
+       return ($subId == $subIdTest);
+} // END - if
+
+// Prepares found sub id for updating in database
+function prepareFoundSubId ($subId) {
+       // Then check if it is valid and available
+       if ((!isValidSubId($subId)) || (isMemberSubIdFree($subId))) {
+               // Is not free or invalid
+               $subId = FALSE;
+       } // END - if
+
+       // Return prepared sub id
+       return $subId;
+}
+
+// Validates sub id and returns FALSE if not valid
+function validateSubId ($subId) {
+       // Then check if it is valid and available
+       if (!isValidSubId($subId)) {
+               // Is not free or invalid
+               $subId = FALSE;
+       } // END - if
+
+       // Return prepared sub id
+       return $subId;
+}
+
+// Prepares given sub id for inserting into database
+function prepareSubId ($subId) {
+       // Then check if it is valid and available
+       if ((!isValidSubId($subId)) || (!isMemberSubIdFree($subId))) {
+               // Is not free or invalid
+               $subId = FALSE;
+       } // END - if
+
+       // Return prepared sub id
+       return $subId;
+}
+
+// Check whether given sub *id* is assigned to current member
+function isUserSubIdAssignedToMember ($subId, $userid = NULL) {
+       // Is there cache?
+       if (!isset($GLOBALS[__FUNCTION__][$subId][$userid])) {
+               // Determine it
+               $GLOBALS[__FUNCTION__][$subId][$userid] = (
+                       (
+                               // Is a userid set or current set?
+                               (isValidUserId($userid)) || (isMember())
+                       ) && (
+                               // .. and it assigned with subid's id?
+                               countSumTotalData(
+                                       (isValidUserId($userid) ? $userid : getMemberId()),
+                                               'user_subids',
+                                               'id',
+                                               'userid',
+                                               true,
+                                               sprintf(" AND `id`=%s", bigintval($subId))
+                               ) == 1
+                       )
+               );
+       } // END - if
+
+       // Return cache
+       return $GLOBALS[__FUNCTION__][$subId][$userid];
+}
+
+// Getter for subid from given id number
+function getSubId ($id) {
+       // Is there cache?
+       if (!isset($GLOBALS[__FUNCTION__][$id])) {
+               // Check database for record
+               $result = SQL_QUERY_ESC("SELECT `subid` FROM `{?_MYSQL_PREFIX?}_user_subids` WHERE `id`=%s LIMIT 1",
+                       array(bigintval($id)), __FUNCTION__, __LINE__);
+
+               // Is there an entry?
+               if (SQL_NUMROWS($result) == 1) {
+                       // Load it
+                       list($GLOBALS[__FUNCTION__][$id]) = SQL_FETCHROW($result);
+               } // END - if
+
+               // Free result
+               SQL_FREERESULT($result);
+       } // END - if
+
+       // Return cache
+       return $GLOBALS[__FUNCTION__][$id];
+}
+
+// "Getter for total count of current user's sub ids
+function getTotalMemberSubIds () {
+       // Only do this for logged-in members
+       assert(isMember());
+
+       // Is there cache?
+       if (!isset($GLOBALS[__FUNCTION__])) {
+               // Determine it
+               $GLOBALS[__FUNCTION__] = countSumTotalData(getMemberId(), 'user_subids', 'id', 'userid', TRUE);
+       } // END - if
+
+       // Return cache
+       return $GLOBALS[__FUNCTION__];
+}
+
 //-----------------------------------------------------------------------------
 //                                EL code functions
 //-----------------------------------------------------------------------------
@@ -807,12 +934,12 @@ function doExpressionUser ($data) {
 
        // User-related data, so is there a userid?
        if (!empty($data['matches'][4][$data['key']])) {
-               // Do we have a userid or $userid?
+               // Is there a userid or $userid?
                if (substr($data['matches'][4][$data['key']], 0, 1) == '$') {
                        // Use dynamic call
                        $functionName = "getFetchedUserData('userid', " . $data['matches'][4][$data['key']] . ", '" . $data['callback'] . "')";
                } elseif (!empty($data['matches'][4][$data['key']])) {
-                       // Do we have a number or a dollar sign in front of it?
+                       // Is there a number or a dollar sign in front of it?
                        if (preg_replace('/[^0123456789]/', '', $data['matches'][4][$data['key']]) != $data['matches'][4][$data['key']]) {
                                // Possible database column, so get it again
                                $data['matches'][4][$data['key']] = "getFetchedUserData('userid', getMemberId(), '" . $data['matches'][4][$data['key']] . "')";
@@ -826,7 +953,7 @@ function doExpressionUser ($data) {
                $functionName = "getUserData('" . $data['callback'] . "')";
        }
 
-       // Do we have another function to run (e.g. translations)
+       // Is there another function to run (e.g. translations)
        if (!empty($data['extra_func'])) {
                // Surround the original function call with it
                $functionName = $data['extra_func'] . '(' . $functionName . ')';
@@ -848,11 +975,11 @@ function doExpressionUser ($data) {
 //-----------------------------------------------------------------------------
 
 // Template call-back function for list_user admin function
-function doTemplateAdminListUserTitle ($template, $clear = false) {
+function doTemplateAdminListUserTitle ($template, $clear = FALSE) {
        // Init title with "all accounts"
        $code = '{--ADMIN_LIST_ALL_ACCOUNTS--}';
 
-       // Do we have a 'status' or 'do' set?
+       // Is there a 'status' or 'do' set?
        if (isGetRequestElementSet('status')) {
                // Set title according to the 'status'
                $code = sprintf("{--ADMIN_LIST_STATUS_%s_ACCOUNTS--}", strtoupper(getRequestElement('status')));
@@ -866,14 +993,14 @@ function doTemplateAdminListUserTitle ($template, $clear = false) {
 }
 
 // Template call-back function for displaying "username"
-function doTemplateDisplayUsername ($template, $clear = false, $userid = NULL) {
+function doTemplateDisplayUsername ($template, $clear = FALSE, $userid = NULL) {
        // Is a userid set?
        if (!isValidUserId($userid)) {
                // Please don't call this without a valid userid
                reportBug(__FUNCTION__, __LINE__, 'template=' . $template . ',clear=' . intval($clear) . ',userid[' . gettype($userid) . ']=' . intval($userid) . ' - Invalid userid provided.');
        } // END - if
 
-       // Do we have cache?
+       // Is there cache?
        if (!isset($GLOBALS[__FUNCTION__][$userid])) {
                // Generate code
                $GLOBALS[__FUNCTION__][$userid] = $userid . ' ({%user,nickname,fixEmptyContentToDashes=' . $userid . '%})';
@@ -883,13 +1010,24 @@ function doTemplateDisplayUsername ($template, $clear = false, $userid = NULL) {
        return $GLOBALS[__FUNCTION__][$userid];
 }
 
+// ----------------------------------------------------------------------------
+//                             XML call-back functions
+// ----------------------------------------------------------------------------
+
+// For 'doing' add subid, the column-index is required
+function addXmlSpecialMemberAddDoUserSubid () {
+       // So set it all here
+       $GLOBALS['__COLUMN_INDEX']['doXmlCallbackFunction']  = 'column';
+       $GLOBALS['__XML_ARGUMENTS']['doXmlCallbackFunction']['column_index'] = 'column';
+}
+
 // ----------------------------------------------------------------------------
 //                 Wrapper functions for configuration entries
 // ----------------------------------------------------------------------------
 
 // Getter for user_alpha
 function getUserAlpha () {
-       // Do we have cache?
+       // Is there cache?
        if (!isset($GLOBALS[__FUNCTION__])) {
                // Determine it
                $GLOBALS[__FUNCTION__] = getConfig('user_alpha');
@@ -901,7 +1039,7 @@ function getUserAlpha () {
 
 // Getter for user_limit
 function getUserLimit () {
-       // Do we have cache?
+       // Is there cache?
        if (!isset($GLOBALS[__FUNCTION__])) {
                // Determine it
                $GLOBALS[__FUNCTION__] = getConfig('user_limit');
@@ -913,7 +1051,7 @@ function getUserLimit () {
 
 // Getter for tester_user_surname_prefix
 function getTesterUserSurnamePrefix () {
-       // Do we have cache?
+       // Is there cache?
        if (!isset($GLOBALS[__FUNCTION__])) {
                // Determine it
                $GLOBALS[__FUNCTION__] = getConfig('tester_user_surname_prefix');
@@ -925,7 +1063,7 @@ function getTesterUserSurnamePrefix () {
 
 // Getter for tester_user_maximum
 function getTesterUserMaximum () {
-       // Do we have cache?
+       // Is there cache?
        if (!isset($GLOBALS[__FUNCTION__])) {
                // Determine it
                $GLOBALS[__FUNCTION__] = getConfig('tester_user_maximum');
@@ -937,7 +1075,7 @@ function getTesterUserMaximum () {
 
 // Getter for tester_user_check_cat
 function getTesterUserCheckCat () {
-       // Do we have cache?
+       // Is there cache?
        if (!isset($GLOBALS[__FUNCTION__])) {
                // Determine it
                $GLOBALS[__FUNCTION__] = getConfig('tester_user_check_cat');
@@ -949,7 +1087,7 @@ function getTesterUserCheckCat () {
 
 // Getter for tester_user_gender
 function getTesterUserGender () {
-       // Do we have cache?
+       // Is there cache?
        if (!isset($GLOBALS[__FUNCTION__])) {
                // Determine it
                $GLOBALS[__FUNCTION__] = getConfig('tester_user_gender');
@@ -961,7 +1099,7 @@ function getTesterUserGender () {
 
 // Getter for tester_user_family
 function getTesterUserFamily () {
-       // Do we have cache?
+       // Is there cache?
        if (!isset($GLOBALS[__FUNCTION__])) {
                // Determine it
                $GLOBALS[__FUNCTION__] = getConfig('tester_user_family');
@@ -973,7 +1111,7 @@ function getTesterUserFamily () {
 
 // Getter for tester_user_password
 function getTesterUserPassword () {
-       // Do we have cache?
+       // Is there cache?
        if (!isset($GLOBALS[__FUNCTION__])) {
                // Determine it
                $GLOBALS[__FUNCTION__] = getConfig('tester_user_password');
@@ -985,7 +1123,7 @@ function getTesterUserPassword () {
 
 // Getter for tester_user_street_nr
 function getTesterUserStreetNr () {
-       // Do we have cache?
+       // Is there cache?
        if (!isset($GLOBALS[__FUNCTION__])) {
                // Determine it
                $GLOBALS[__FUNCTION__] = getConfig('tester_user_street_nr');
@@ -997,7 +1135,7 @@ function getTesterUserStreetNr () {
 
 // Getter for tester_user_zip
 function getTesterUserZip () {
-       // Do we have cache?
+       // Is there cache?
        if (!isset($GLOBALS[__FUNCTION__])) {
                // Determine it
                $GLOBALS[__FUNCTION__] = getConfig('tester_user_zip');
@@ -1009,7 +1147,7 @@ function getTesterUserZip () {
 
 // Getter for tester_user_city
 function getTesterUserCity () {
-       // Do we have cache?
+       // Is there cache?
        if (!isset($GLOBALS[__FUNCTION__])) {
                // Determine it
                $GLOBALS[__FUNCTION__] = getConfig('tester_user_city');
@@ -1021,7 +1159,7 @@ function getTesterUserCity () {
 
 // Getter for tester_user_email
 function getTesterUserEmail () {
-       // Do we have cache?
+       // Is there cache?
        if (!isset($GLOBALS[__FUNCTION__])) {
                // Determine it
                $GLOBALS[__FUNCTION__] = getConfig('tester_user_email');
@@ -1031,5 +1169,53 @@ function getTesterUserEmail () {
        return $GLOBALS[__FUNCTION__];
 }
 
+// Getter for 'ap_subids' config entry
+function getApSubids () {
+       // Is there cache?
+       if (!isset($GLOBALS[__FUNCTION__])) {
+               // Determine it
+               $GLOBALS[__FUNCTION__] = getConfig('ap_subids');
+       } // END - if
+
+       // Return cache
+       return $GLOBALS[__FUNCTION__];
+}
+
+// Determines whether 'ap_subids' is set to 'Y'
+function isApSubidsEnabled () {
+       // Is there cache?
+       if (!isset($GLOBALS[__FUNCTION__])) {
+               // Determine it
+               $GLOBALS[__FUNCTION__] = (getApSubids() == 'Y');
+       } // END - if
+
+       // Return cache
+       return $GLOBALS[__FUNCTION__];
+}
+
+// Getter for 'ap_subids_since' config entry
+function getApSubidsSince () {
+       // Is there cache?
+       if (!isset($GLOBALS[__FUNCTION__])) {
+               // Determine it
+               $GLOBALS[__FUNCTION__] = getConfig('ap_subids_since');
+       } // END - if
+
+       // Return cache
+       return $GLOBALS[__FUNCTION__];
+}
+
+// Getter for 'select_user_zero_refid' config entry
+function getSelectUserZeroRefid () {
+       // Is there cache?
+       if (!isset($GLOBALS[__FUNCTION__])) {
+               // Determine it
+               $GLOBALS[__FUNCTION__] = getConfig('select_user_zero_refid');
+       } // END - if
+
+       // Return cache
+       return $GLOBALS[__FUNCTION__];
+}
+
 // [EOF]
 ?>