File: D:/HostingSpaces/SBogers18/decoockpit.nl/wwwroot/app/controllers/c_acties.class.php
<?php
/**
* c_home.class.php
* Created by Komma Mediadesign.
* Author: mike
* Date: 11/02/14
*/
class Acties extends Controller
{
public function __construct()
{
parent::__construct();
}
/*
* Index of the home page
*/
public function index()
{
$reader = new Image_Reader('cards');
$list = $reader->createList();
$this->View->setData('list', $list);
$name = URL_PAGE;
// Title
$this->View->setData('page_title', ucfirst($name) . SITE_NAME);
// Load template view
$this->View->render('v_acties');
}
}