]> git.mxchange.org Git - mailer.git/blobdiff - inc/wrapper-functions.php
New wrapper functions introduced, TODOs.txt updated
[mailer.git] / inc / wrapper-functions.php
index eee9e64f0be4a358dec5de6094e8a9647172db38..2a953014d64becc8dccbed06609899054dcaa086 100644 (file)
@@ -2257,7 +2257,7 @@ function getSmtpPassword () {
        return $GLOBALS[__FUNCTION__];
 }
 
-// "Getter" for POINTS_WORD
+// "Getter" for points_word
 function getPointsWord () {
        // Do we have cache?
        if (!isset($GLOBALS[__FUNCTION__])) {
@@ -2269,6 +2269,42 @@ function getPointsWord () {
        return $GLOBALS[__FUNCTION__];
 }
 
+// "Getter" for profile_lock
+function getProfileLock () {
+       // Do we have cache?
+       if (!isset($GLOBALS[__FUNCTION__])) {
+               // Determine it
+               $GLOBALS[__FUNCTION__] = getConfig('profile_lock');
+       } // END - if
+
+       // Return cache
+       return $GLOBALS[__FUNCTION__];
+}
+
+// "Getter" for online_timeout
+function getOnlineTimeout () {
+       // Do we have cache?
+       if (!isset($GLOBALS[__FUNCTION__])) {
+               // Determine it
+               $GLOBALS[__FUNCTION__] = getConfig('online_timeout');
+       } // END - if
+
+       // Return cache
+       return $GLOBALS[__FUNCTION__];
+}
+
+// "Getter" for url_tlock
+function getUrlTlock () {
+       // Do we have cache?
+       if (!isset($GLOBALS[__FUNCTION__])) {
+               // Determine it
+               $GLOBALS[__FUNCTION__] = getConfig('url_tlock');
+       } // END - if
+
+       // Return cache
+       return $GLOBALS[__FUNCTION__];
+}
+
 // Checks wether proxy configuration is used
 function isProxyUsed () {
        // Do we have cache?