From 9ca8f1a596d5504b9d1c299938cce9ee0245137b Mon Sep 17 00:00:00 2001 From: quix0r Date: Thu, 28 Jul 2011 21:21:51 +0000 Subject: [PATCH] Missing wrapper added --- inc/wrapper-functions.php | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/inc/wrapper-functions.php b/inc/wrapper-functions.php index ab5a1b975b..557f7e2d3d 100644 --- a/inc/wrapper-functions.php +++ b/inc/wrapper-functions.php @@ -2376,6 +2376,42 @@ function getUrlTlock () { return $GLOBALS[__FUNCTION__]; } +// "Getter" for title_left +function getTitleLeft () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = getConfig('title_left'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// "Getter" for title_right +function getTitleRight () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = getConfig('title_right'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// "Getter" for title_middle +function getTitleMiddle () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = getConfig('title_middle'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + // Getter for 'check_double_email' function getCheckDoubleEmail () { // Is the cache entry set? -- 2.39.5