File: D:/HostingSpaces/yoda-ict/yoda-ict.nl/wwwroot/app/controllers/c_home.class.php
<?php
/**
* c_home.class.php
* Created by Komma Mediadesign.
* Author: mike
* Date: 11/02/14
*/
class Home extends Controller
{
public function __construct()
{
parent::__construct();
}
/*
* Index of the home page
*/
public function index()
{
// Title
$this->View->setData('page_title', SITE_NAME . ' | Webhosting, domeinregistratie, hosted exchange, virtuele werkplekken en VDS hosting');
// 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_home');
}
}