# wpide/trunk/App/Controllers/ViewController.php

WPIDE – File Manager &amp; Code Editor, version trunk. 16 lines.

- Page: https://pluginprobe.com/plugins/wpide/trunk/code/App/Controllers/ViewController.php
- Raw: https://pluginprobe.com/plugins/wpide/trunk/raw/App/Controllers/ViewController.php
- Modified: 2022-07-30T20:33:10+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wpide/trunk/code/App/Controllers/ViewController.php#L10-L20`.

```php
<?php

namespace WPIDE\App\Controllers;

use WPIDE\App\Kernel\Response;
use WPIDE\App\Services\View\ViewInterface;

class ViewController
{

    public function index(Response $response, ViewInterface $view)
    {
        return $response->html($view->getIndexPage());
    }
}

```
