File: D:/HostingSpaces/yoda-ict/yoda-ict.nl/wwwroot/app/controllers/c_privacy.class.php
<?php
class Privacy extends Controller
{
public function __construct()
{
parent::__construct();
}
/*
* Index of the home page
*/
public function index()
{
// Title
$this->View->setData('page_title', 'Privacyverklaring | ' . 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_privacy');
}
}