Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
32 | 4 | public function init() |
|
33 | { |
||
34 | 4 | AuthChoiceAsset::register(Yii::$app->view); |
|
35 | 4 | if ($this->popupMode) { |
|
36 | 4 | Yii::$app->view->registerJs("\$('#" . $this->getId() . "').authchoice();"); |
|
37 | } |
||
38 | 4 | $this->options['id'] = $this->getId(); |
|
39 | 4 | echo Html::beginTag('div', $this->options); |
|
40 | 4 | } |
|
41 | |||
68 |