Last change
on this file since 1 was 1, checked in by george, 16 years ago |
- Přidáno: Výchozí verze systému.
|
File size:
505 bytes
|
Rev | Line | |
---|
[1] | 1 | <?php
|
---|
| 2 |
|
---|
| 3 | include_once(dirname(__FILE__).'/../Base/System.php');
|
---|
| 4 | include_once(dirname(__FILE__).'/CustomOutput.php');
|
---|
| 5 |
|
---|
| 6 | class 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.