Since: 2.0
Author: Qiang Xue (qiang.xue@gmail.com)
Inheritance: extends HttpException
コード例 #1
0
ファイル: HostControl.php プロジェクト: kilyanov/yii2
 /**
  * Denies the access.
  * The default implementation will display 404 page right away, terminating the program execution.
  * You may override this method, creating your own deny access handler. While doing so, make sure you
  * avoid usage of the current requested host name, creation of absolute URL links, caching page parts and so on.
  * @param \yii\base\Action $action the action to be executed.
  * @throws NotFoundHttpException
  */
 protected function denyAccess($action)
 {
     $exception = new NotFoundHttpException(Yii::t('yii', 'Page not found.'));
     // use regular error handling if $this->fallbackHostInfo was set
     if (!empty(Yii::$app->getRequest()->hostName)) {
         throw $exception;
     }
     $response = Yii::$app->getResponse();
     $errorHandler = Yii::$app->getErrorHandler();
     $response->setStatusCode($exception->statusCode, $exception->getMessage());
     $response->data = $errorHandler->renderFile($errorHandler->errorView, ['exception' => $exception]);
     $response->send();
     Yii::$app->end();
 }
コード例 #2
0
ファイル: HostControl.php プロジェクト: yiisoft/yii2
 /**
  * Denies the access.
  * The default implementation will display 404 page right away, terminating the program execution.
  * You may override this method, creating your own deny access handler. While doing so, make sure you
  * avoid usage of the current requested host name, creation of absolute URL links, caching page parts and so on.
  * @param \yii\base\Action $action the action to be executed.
  */
 protected function denyAccess($action)
 {
     $response = Yii::$app->getResponse();
     $errorHandler = Yii::$app->getErrorHandler();
     $exception = new NotFoundHttpException(Yii::t('yii', 'Page not found.'));
     $response->setStatusCode($exception->statusCode, $exception->getMessage());
     $response->data = $errorHandler->renderFile($errorHandler->errorView, ['exception' => $exception]);
     $response->send();
     Yii::$app->end();
 }