File: D:/HostingSpaces/SBogers18/decoockpit.nl/wwwroot/app/controllers/c_restaurant.class.php
<?php
/**
* c_home.class.php
* Created by Komma Mediadesign.
* Author: mike
* Date: 11/02/14
*/
class Restaurant extends Controller
{
public function __construct()
{
parent::__construct();
}
/*
* Index of the home page
*/
public function index()
{
/*if (defined('URL_SUB'))
{
switch(URL_SUB){
case 'menukaart':
$this->showSub('menukaart');
break;
case 'openingstijden':
$this->showSub('openingstijden');
break;
}
exit;
}*/
$name = URL_PAGE;
// Title
$this->View->setData('page_title', ucfirst($name) . SITE_NAME);
// Load template view
$this->View->render('v_restaurant');
}
public function showSub()
{
$name = URL_SUB;
$this->View->setData('page_title', ucfirst($name) . SITE_NAME);
// Load template view
$this->View->render('v_restaurant_'.$name);
}
}