1 | <?php |
||
15 | abstract class AbstractController extends \flipbox\craft\ember\controllers\AbstractController |
||
16 | { |
||
17 | /** |
||
18 | * @return array |
||
19 | */ |
||
20 | public function behaviors() |
||
37 | |||
38 | /** |
||
39 | * @return bool |
||
40 | * @throws \yii\web\ForbiddenHttpException |
||
41 | */ |
||
42 | public function checkAdminChanges(): bool |
||
47 | |||
48 | /** |
||
49 | * @return bool |
||
50 | * @throws \yii\web\ForbiddenHttpException |
||
51 | */ |
||
52 | public function checkAdminAccess(): bool |
||
57 | |||
58 | /** |
||
59 | * @return bool |
||
60 | * @throws \yii\web\ForbiddenHttpException |
||
61 | */ |
||
62 | public function checkCanMakeAdminChanges(): bool |
||
66 | } |
||
67 |