$points), $userid); sendEmail($userid, '{--MEMBER_AUTOPURGE_SUBJECT--}', $message); } // Checks wether auto-purging is enabled function isAutoPurgingActive () { // Do we have cache? if (!isset($GLOBALS[__FUNCTION__])) { // Determine it $GLOBALS[__FUNCTION__] = (getConfig('auto_purge_active') == 'Y'); } // END - if // Return cache return $GLOBALS[__FUNCTION__]; } // Wrapper for 'autopurge_inactive function getAutopurgeInactive () { // Do we have cache? if (!isset($GLOBALS[__FUNCTION__])) { // Determine it $GLOBALS[__FUNCTION__] = (getConfig('autopurge_inactive') == 'Y'); } // END - if // Return cache return $GLOBALS[__FUNCTION__]; } // Checks wether purging of inactive accounts is enabled function isAutopurgeInactiveEnabled () { // Do we have cache? if (!isset($GLOBALS[__FUNCTION__])) { // Determine it $GLOBALS[__FUNCTION__] = (getAutopurgeInactive() == 'Y'); } // END - if // Return cache return $GLOBALS[__FUNCTION__]; } // [EOF] ?>