コード例 #1
0
ファイル: Cookie.php プロジェクト: hettema/Stages
 /**
  * Is https secure request
  * Use secure on backend only
  *
  * @return bool
  */
 public function isSecure()
 {
     if (App_Main::isRouterAdmin()) {
         return $this->_getRequest()->isSecure();
     }
     return false;
 }