コード例 #1
0
ファイル: UserController.php プロジェクト: dawei101/plants
 public function actions()
 {
     $as = parent::actions();
     return ['login', 'signup', 'me'];
 }
コード例 #2
0
 public function actions()
 {
     $ats = parent::actions();
     return ['index' => $ats['index']];
 }
コード例 #3
0
ファイル: PlantController.php プロジェクト: dawei101/plants
 public function actions()
 {
     $ats = parent::actions();
     unset($ats['delete']);
     return $ats;
 }
コード例 #4
0
 public function actions()
 {
     $ats = parent::actions();
     return ['update' => $ats['update'], 'view' => $ats['view'], 'index' => $ats['index']];
 }