File: D:/HostingSpaces/SBogers10/spire.komma-mediadesign.nl/wwwroot/mvc/controllers/c_fans.php
<?php
/**
* c_accessories.php
* Created by Komma Mediadesign.
* Author: mike
* Date: 2/18/13
*/
$linkName = 'fans';
$pageId = 13;
/*
* Get current
*/
$Dbh = new DatabaseHandler();
$Dbh->setTableName('page_'.$linkName.'_docs');
$Dbh->setData(array('filename'=>''));
$Dbh->setScope(0,1);
$Dbh->setOrder('timest','ASC');
$data = $Dbh->select();
$this->setData('filename',$data['filename']);
/*
* Create category subMenu and blocks
*/
$this->load('/mvc/controllers/c_categories.php');
/*
* Set Page Title
*/
$this->setData('page_title', 'Fans | '.SITE_NAME);
/*
* Set Breadcrump
*/
$bc = new Breadcrump();
$bc->add('home',SITE_ROOT);
$bc->add('products',SITE_ROOT.'products/');
$bc->add('fans',SITE_ROOT.'fans/');
$output = $bc->get();
$this->setData('breadcrump', $output);
$bc = new Breadcrump();
$bc->add('categories',SITE_ROOT.'products/');
$bc->add('fans',SITE_ROOT.'fans/');
$output = $bc->get();
$this->setData('inner_breadcrump', $output);
/*
* Set Content View Path
*/
$this->setData('content_view_path', 'mvc/views/products/v_harddrive_enclosures.php');