HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers7/bogers-tekenburo.nl/wwwroot/app/controllers/c_home.class.php
<?php
/**
 * c_home.class.php
 * Created by Komma Mediadesign.
 * Author: mike
 * Date: 11/02/14
 */

class Home extends Controller
{
    public function __construct()
    {
        parent::__construct();
    }

    /*
     * Index of the home page
     */
    public function index()
    {
        // Title
        $this->View->setData('page_title', SITE_NAME);

        // Header photos
        $hp = '';
        for($i=1;$i<=7;$i++)
        {
            $hp .= '<li><img src="/public/images/static/headerfoto_' . $i . '.jpg" alt="Foto ' . $i . '" /></li>';
        }
        $this->View->setData('header_photos', $hp);

        // Drawings
        $draw = '<ul class="drawings">';
        for($i=1;$i<=12;$i++){ $draw .= '<li><a href="/public/pdf/tekening_' . $i . '.pdf" target="_blank">Tekening ' . $i .'</a></li>'; }
        $draw .= '</ul><ul class="drawings last">';
        for($i=13;$i<=24;$i++){ $draw .= '<li><a href="/public/pdf/tekening_' . $i . '.pdf" target="_blank">Tekening ' . $i .'</a></li>'; }
        $draw .= '</ul>';

        $this->View->setData('tekeningen', $draw);

        // Load template view
        $this->View->render('v_home');
    }
}