File: D:/HostingSpaces/SBogers10/ilysium.komma.pro/wwwroot/app/controllers/c_private_sauna.class.php
<?php
/**
* c_private_sauna.class.php
* Created by Komma Mediadesign.
* Author: mike
* Date: 11/02/14
*/
class Private_Sauna extends Controller
{
public function __construct()
{
parent::__construct();
}
/*
* Index of the home page
*/
public function index()
{
// Title
$this->View->setData('page_title', 'Privé Sauna | ' . SITE_NAME );
// Breadcrumb
$bc = new Breadcrumb();
$bc->push('','/','home');
$bc->push('privé sauna','/prive-sauna');
$this->View->setData('breadcrumb', $bc->create() );
// Load template view
$this->View->render('v_private_sauna');
}
public function massages()
{
// Title
$this->View->setData('page_title', 'Massages | Privé Sauna | ' . SITE_NAME );
// Breadcrumb
$bc = new Breadcrumb();
$bc->push('','/','home');
$bc->push('privé sauna','/prive-sauna');
$bc->push('massages','/prive-sauna/massages');
$this->View->setData('breadcrumb', $bc->create() );
// Load template view
$this->View->render('private_sauna/v_massages');
}
}