# depicter/1.9.2/app/src/Controllers/Admin/DashboardController.php

Depicter — Popup &amp; Slider Builder, version 1.9.2. 19 lines.

- Page: https://pluginprobe.com/plugins/depicter/1.9.2/code/app/src/Controllers/Admin/DashboardController.php
- Raw: https://pluginprobe.com/plugins/depicter/1.9.2/raw/app/src/Controllers/Admin/DashboardController.php
- Modified: 2022-06-01T06:26:20+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/depicter/1.9.2/code/app/src/Controllers/Admin/DashboardController.php#L10-L20`.

```php
<?php
namespace Depicter\Controllers\Admin;

use WPEmerge\Requests\Request;
use WPEmerge\View\ViewInterface;

class DashboardController {
	/**
	 * Handle the index page.
	 *
	 * @param Request        $request
	 * @param string         $view     the view that WordPress was trying to load
	 * @return ViewInterface
	 */
	public function index( Request $request, $view ) {
		return \Depicter::view( 'admin/dashboard/index.php' )->with([]);
	}
}

```
