| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | public function actionIndex() |
||
| 29 | { |
||
| 30 | |||
| 31 | // Empty variables for template |
||
| 32 | $variables = []; |
||
| 33 | |||
| 34 | // apply base view variables |
||
| 35 | $this->baseVariables($variables); |
||
| 36 | |||
| 37 | // Full page form in the CP |
||
| 38 | $variables['fullPageForm'] = true; |
||
| 39 | |||
| 40 | return $this->renderTemplate(static::TEMPLATE_INDEX, $variables); |
||
| 41 | } |
||
| 42 | |||
| 61 |