File: D:/HostingSpaces/SBogers60/vandeurzenheftrucks.nl/wwwroot/app/controllers/c_terms.class.php
<?php
/**
* c_disclaimer.class.php
* Created by Komma Mediadesign.
* Author: mike
* Date: 11/02/14
*/
class Terms extends Controller
{
public function __construct()
{
parent::__construct();
}
/*
* Index of the home page
*/
public function index()
{
// Title
$this->View->setData('page_title', 'Algemene voorwaarden | ' . SITE_NAME);
$Bc = new Breadcrumb();
$this->View->setData('breadcrumb', $Bc->create('terms') );
// Load template view
$this->View->render('v_terms');
}
}