File: D:/HostingSpaces/SBogers68/resortouddorpduin.nl/wwwroot/app/controllers/c_woningen.class.php
<?php
/**
* c_home.class.php
* Created by Komma Mediadesign.
* Author: mike
* Date: 11/02/14
*/
class Woningen extends Controller
{
public function __construct()
{
parent::__construct();
}
/*
* Index of the home page
*/
public function index()
{
// Title
$this->View->setData('page_title', SITE_NAME);
// Load template view
$this->View->render('v_woningen');
}
public function woningItem()
{
// url..
if (!defined('URL_SUB')) {
Fn::notFound();
}
$page = str_replace('-', '_', URL_SUB);
$this->View->render('woningen/v_' . $page);
}
}