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/SBogers10/ilysium.komma.pro/wwwroot/app/controllers/c_beauty_institute.class.php
<?php
/**
 * c_beauty_institute.class.php
 * Created by Komma Mediadesign.
 * Author: mike
 * Date: 11/02/14
 */


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

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

        // Breadcrumb
        $bc = new Breadcrumb();
        $bc->push('','/','home');
        $bc->push('schoonheidsinstituut','/schoonheidsinstituut');
        $this->View->setData('breadcrumb', $bc->create() );

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

    public function skincare()
    {
        // Title
        $this->View->setData('page_title', 'Huidverzorging | Schoonheidsinstituut | ' . SITE_NAME );

        // Breadcrumb
        $bc = new Breadcrumb();
        $bc->push('','/','home');
        $bc->push('schoonheidsinstituut','/schoonheidsinstituut');
        $bc->push('huidverzorging','/schoonheidsinstituut/huidverzorging');
        $this->View->setData('breadcrumb', $bc->create() );

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

    public function skin_improvement()
    {
        // Title
        $this->View->setData('page_title', 'Huidverzorging | Schoonheidsinstituut | ' . SITE_NAME );

        // Breadcrumb
        $bc = new Breadcrumb();
        $bc->push('','/','home');
        $bc->push('schoonheidsinstituut','/schoonheidsinstituut');
        $bc->push('huidverzorging','/schoonheidsinstituut/huidverzorging');
        $this->View->setData('breadcrumb', $bc->create() );

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

    public function hands_feet()
    {
        // Title
        $this->View->setData('page_title', 'Handen en Voeten | Schoonheidsinstituut | ' . SITE_NAME );

        // Breadcrumb
        $bc = new Breadcrumb();
        $bc->push('','/','home');
        $bc->push('schoonheidsinstituut','/schoonheidsinstituut');
        $bc->push('handen &amp; voeten','/schoonheidsinstituut/handen-en-voeten');
        $this->View->setData('breadcrumb', $bc->create() );

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