| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | public function run() |
||
| 30 | { |
||
| 31 | ApplyToAllAsset::register($this->view); |
||
| 32 | $options = \yii\helpers\Json::htmlEncode([ |
||
| 33 | 'countModels' => count($this->models), |
||
| 34 | 'formName' => strtolower(reset($this->models)->formName()), |
||
| 35 | 'attributes' => $this->attributes, |
||
| 36 | 'linkText' => \Yii::t('hipanel', 'Apply to all'), |
||
| 37 | ]); |
||
| 38 | $this->view->registerJs("\$('#assign-hubs-form').applyToAll($options);"); |
||
| 39 | |||
| 40 | return parent::run(); |
||
| 41 | } |
||
| 42 | } |
||
| 43 |