Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.49 KB | None | 0 0
  1.  /**
  2.      * @inheritdoc
  3.      */
  4.     public function behaviors()
  5.     {
  6.         return [
  7.             'access' => [
  8.                 'class' => AccessControl::className(),
  9.                 'rules' => [
  10.                     [
  11.                         'actions' => ['index', 'view', 'create', 'update', 'delete'],
  12.                         'allow' => true,
  13.                         'roles' => ['administrator','manager'],
  14.                     ],
  15.                 ],
  16.             ],
  17.         ];
  18.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement