File: D:/HostingSpaces/SBogers10/ilysium.komma.pro/wwwroot/app/controllers/c_gallery.class.php
<?php
/**
* c_gallery.class.php
* Created by Komma Mediadesign.
* Author: mike
* Date: 11/02/14
*/
class Gallery extends Controller
{
public function __construct()
{
parent::__construct();
}
/*
* Index of the home page
*/
public function index()
{
// Title
$this->View->setData('page_title', 'Fotogalerij | ' . SITE_NAME );
// Breadcrumb
$bc = new Breadcrumb();
$bc->push('','/','home');
$bc->push('fotogalerij','/fotogalerij');
$this->View->setData('breadcrumb', $bc->create() );
// Load template view
$this->View->render('v_gallery');
}
}