Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
39 | public function actionSetDefault($languageId) |
||
40 | { |
||
41 | $language = Language::findOne($languageId); |
||
42 | if (null === $language) { |
||
43 | throw new NotFoundHttpException('Language with id ' . $languageId . ' does not exist'); |
||
44 | } |
||
45 | |||
46 | $language->default = $language->default == 0 ? 1 : 0; |
||
47 | $language->save(); |
||
48 | |||
49 | return $this->redirect('index'); |
||
50 | } |
||
51 | |||
72 |