| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | public function actionIndex() |
||
| 22 | { |
||
| 23 | Yii::$container->set(ActivityLogViewModel::class, [ |
||
| 24 | 'entityMap' => $this->module->entityMap |
||
| 25 | ]); |
||
| 26 | |||
| 27 | $searchModel = new ActivityLogSearch(); |
||
| 28 | $dataProvider = $searchModel->search(Yii::$app->getRequest()->getQueryParams()); |
||
| 29 | |||
| 30 | return $this->render('index', [ |
||
| 31 | 'dataProvider' => $dataProvider, |
||
| 32 | ]); |
||
| 35 |