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/SBogers68/resortouddorpduin.nl/wwwroot/config/lang/language.class.php
<?php

/*
 * en.php
 * Created by Komma Mediadesign.
 * Author: mike
 * Date: 3/21/13
 */

class Language
{
    /*
     * @property array lang
     */
    protected $lang = array();

    /*
      * Converter / LinkBuilder
      * Keys have to be the same as the name of the controller/method
      */
    protected $urls = array();

    /*
     * Pages
     */
    protected $mainPages = array();
    protected $subPages = array();
    protected $pages = array();

    /*
     * Constructor
     */
    public function __construct(){}

    /*
     * Get
     * @return array
     */
    public function get($what = 'data')
    {
        if($what == 'data')
        {
            return $this->lang;
        }
        else if($what == 'url')
        {
            return $this->urls;
        }
        else if($what == 'pages')
        {
            return $this->pages;
        }
        return false;
    }
}