resurtm

Untitled

Aug 30th, 2015
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. <?php
  2.  
  3. // вверху
  4. use yii\web\HttpException;
  5.  
  6. // метод
  7. public function actionView($id)
  8. {
  9.     $model = $this->findModel($id);
  10.     if (Yii::$app->user->id != $model->ManagerId) {
  11.         Yii::$app->response->setStatusCode(403, 'Вам недоступен данный контакт так как вы не являетесь его владельцем.');
  12.     }
  13.     return $this->render('view', ['model' => $model]);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment