<?php
/**
* Created by Komma.pro
* User: mikevandersanden
* Date: 2/10/13
*/
class Trash extends Controller
{
public function __construct()
{
parent::__construct();
}
public function index()
{
// Page Title
$this->View->setData('page_title', $this->lang['trashcan'] . ' | ' . SITE_NAME );
// Show form
$this->View->render('trash/v_dash');
}
}