コード例 #1
0
ファイル: Settings.php プロジェクト: octoweb/yii2-settings
 public function getGrouping()
 {
     return $this->hasOne(SettingGroup::className(), ['name' => 'group']);
 }
コード例 #2
0
 public function actionGroupsDelete($name)
 {
     SettingGroup::findOne($name)->delete();
     return $this->redirect(['groups']);
 }