| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 63 | protected function getViewRenderParams($model) |
||
| 64 | { |
||
| 65 | $listDataProvider = new ArrayDataProvider([ |
||
| 66 | 'allModels' => $model->followers, |
||
| 67 | 'pagination' => [ |
||
| 68 | 'pageSize' => 18 |
||
| 69 | ], |
||
| 70 | ]); |
||
| 71 | |||
| 72 | return [ |
||
| 73 | 'name' => $this->defaultName, |
||
| 74 | 'model' => $model, |
||
| 75 | 'isEnable' => $model->isEnabled(), |
||
| 76 | 'listDataProvider' => $listDataProvider |
||
| 77 | ]; |
||
| 80 |