/**
  *
  * {@inheritDoc}
  *
  * @see LC_Page::process()
  */
 function process()
 {
     if (ADMIN_FORCE_SSL && SC_Utils_Ex::sfIsHTTPS() === false) {
         SC_Response_Ex::reloadSSL();
         SC_Response_Ex::actionExit();
     }
     GC_Utils_Ex::gfPrintLog(print_r($_SESSION, true), DEBUG_LOG_REALFILE);
     GC_Utils_Ex::gfPrintLog(print_r($_COOKIE, true), DEBUG_LOG_REALFILE);
     GC_Utils_Ex::gfPrintLog(print_r($_SERVER, true), DEBUG_LOG_REALFILE);
     GC_Utils_Ex::gfPrintLog(print_r($_ENV, true), DEBUG_LOG_REALFILE);
     parent::process();
     $this->action();
     $this->sendResponse();
 }