File: D:/HostingSpaces/SBogers10/ilysium.komma.pro/wwwroot/app/controllers/c_persona.class.php
<?php
/**
* c_persona.class.php
* Created by Komma Mediadesign.
* Author: mike
* Date: 11/02/14
*/
class Persona extends Controller
{
public function __construct()
{
parent::__construct();
}
/*
* Index of the home page
*/
public function index()
{
// Title
$this->View->setData('page_title', 'Imago | ' . SITE_NAME );
// Breadcrumb
$bc = new Breadcrumb();
$bc->push('','/','home');
$bc->push('imago','/imago');
$this->View->setData('breadcrumb', $bc->create() );
// Load template view
$this->View->render('v_persona');
}
public function color_style()
{
// Title
$this->View->setData('page_title', 'Kleur- en Stijlanalyse | Imago | ' . SITE_NAME );
// Breadcrumb
$bc = new Breadcrumb();
$bc->push('','/','home');
$bc->push('imago','/imago');
$bc->push('kleur- & stijlanalyse','/imago/kleur-en-stijlanalyse');
$this->View->setData('breadcrumb', $bc->create() );
// Load template view
$this->View->render('persona/v_color_style');
}
public function make_up()
{
// Title
$this->View->setData('page_title', 'Make-up | Imago | ' . SITE_NAME );
// Breadcrumb
$bc = new Breadcrumb();
$bc->push('','/','home');
$bc->push('imago','/imago');
$bc->push('make-up','/imago/make-up');
$this->View->setData('breadcrumb', $bc->create() );
// Load template view
$this->View->render('persona/v_make_up');
}
}