PHP Classes

File: DebugConsole/Index.php

Recommend this page to a friend!
  Classes of Michele Pagnin   MToolkit   DebugConsole/Index.php   Download  
File: DebugConsole/Index.php
Role: Application script
Content type: text/plain
Description: Application script
Class: MToolkit
PHP Web application framework that supports MVC
Author: By
Last change:
Date: 9 years ago
Size: 578 bytes
 

Contents

Class file image Download
<?php

namespace MToolkit\DebugConsole;

require_once
__DIR__ . '/Settings.php';

use
MToolkit\Controller\MAbstractPageController;
use
MToolkit\DebugConsole\MasterPages\MainMasterPage;
use
MToolkit\DebugConsole\Languages\Languages;

class
Index extends MAbstractPageController
{

    public function
__construct()
    {
       
parent::__construct( __DIR__ . '/Index.view.php' );
       
parent::setMasterPage( new MainMasterPage( $this ) );
       
parent::addMasterPagePart( "Content", "Content" );
       
parent::setPageTitle( Languages::getString( "mtoolkit" ) );
    }

}