File: D:/HostingSpaces/SBogers64/klimroosbudel.nl/wwwroot/kms/app/controllers/c_home.class.php
<?php
/**
* c_home.class.php
* Created by Komma Mediadesign.
* Author: mike
* Date: 3/19/13
*/
class Home extends Controller
{
public function __construct()
{
parent::__construct();
}
/*
* Gets the dashboard of our homepage
*/
public function index()
{
// Create a welcome message for the user
$goodDay = $this->Functions->getGoodDay();
$message = $this->View->getLang($goodDay);
$this->View->setData('welcome_time', $message);
// Set title of this page
$this->View->setData('page_title', SITE_NAME);
// Render the view
$this->View->render('v_home');
}
}