File: D:/HostingSpaces/yoda-ict/yoda-ict.nl/wwwroot/app/controllers/c_page_not_found.class.php
<?php
/**
* c_home.class.php
* Created by Komma Mediadesign.
* Author: mike
* Date: 11/02/14
*/
class Page_Not_Found extends Controller
{
public function __construct()
{
parent::__construct();
}
/*
* Index of the home page
*/
public function index()
{
// Title
$this->View->setData('page_title', 'Pagina niet gevonden | ' . SITE_NAME);
// Generate list
$blocks = array('webhosting','hosted_exchange','workspaces','vds_hosting');
$Services = new Service_Block();
$services = $Services->generate($blocks);
$this->View->setData('services', $services);
// Load template view
$this->View->render('v_404');
}
}