Ejemplo n.º 1
0
 /**
  * Page のプロセス(モバイル).
  *
  * @return void
  */
 function mobileProcess()
 {
     define('SKIP_MOBILE_INIT', true);
     if (isset($_GET['token'])) {
         $next_url = GC_Utils_Ex::gfFinishKaraMail($_GET['token']);
     }
     // $next_url には, セッションID付与済み
     if (isset($next_url) && $next_url !== false) {
         $this->sendRedirect($next_url);
     } else {
         $this->sendRedirect(MOBILE_SITE_URL, true);
     }
 }