source: Application/Application.php

Last change on this file was 1, checked in by george, 14 years ago
  • Přidáno: Výchozí verze systému.
File size: 505 bytes
Line 
1<?php
2
3include_once(dirname(__FILE__).'/../Base/System.php');
4include_once(dirname(__FILE__).'/CustomOutput.php');
5
6class Application extends System
7{
8 var $DefaultModule = 'Main';
9
10 function __construct()
11 {
12 parent::__construct();
13 $this->Output = new CustomOutput($this);
14
15 $this->Type->RegisterType('YesNo', 'Enumeration', array('Ano', 'Ne'));
16 $this->Type->RegisterType('NoYes', 'Enumeration', array('Ne', 'Ano'));
17
18 //Header('Content-type: application/xhtml+xml');
19 }
20}
21
22?>
Note: See TracBrowser for help on using the repository browser.