File: D:/HostingSpaces/SBogers18/decoockpit.nl/wwwroot/app/controllers/c_puzzelproeverij.class.php
<?php
/**
* c_puzzelproeverij.class.php
* Created by Komma.
* Author: rob
* Date: 03/06/22
*/
class Puzzelproeverij extends Controller
{
public function __construct()
{
parent::__construct();
}
/*
* Index of the home page
*/
public function index()
{
$name = URL_PAGE;
// Title
$this->View->setData('page_title', ucfirst($name) . SITE_NAME);
// Load template view
$this->View->render('v_puzzelproeverij');
}
}