File: D:/HostingSpaces/SBogers64/klimroosbudel.nl/wwwroot/app/controllers/c_news.class.php
<?php
/**
* c_home.class.php
* Created by Komma Mediadesign.
* Author: mike
* Date: 11/02/14
*/
class News extends Site_Controller
{
public function __construct()
{
parent::__construct();
}
/*
* Index of the home page
*/
public function index()
{
// Title
$this->View->setData('page_title', SITE_NAME);
// Create list
$output = $this->Model->create();
$this->View->setData('news_output', $output);
// Set header photos
$photos = 'nieuws/header_nieuws2.jpg';
$this->View->setData('header_photos', $photos);
// Load template view
$this->View->render('v_news');
}
}