checkMagicQuotesGPC(); // Configuration $this->initializeTimezone(); } // End of construct /** * @brief Check magic_quote_gpc. If is activated, throwing exception. * @return null */ private function checkMagicQuotesGPC() { if ( get_magic_quotes_gpc() == 1 ) { throw new myException('PHP variable magic_quotes_gpc must be set on Off'); } } /** * @brief Initialize the timezone if not set * @return null */ private function initializeTimezone() { date_default_timezone_set(TIMEZONE); } } // End of class ?>