Last change
on this file since 405 was 405, checked in by chronos, 13 years ago |
- Přidáno: Podpora překládání.
- Přidáno: Do seznamu modulů přidány akce Instalovat a Odinstalovat.
|
-
Property svn:executable
set to
*
|
File size:
597 bytes
|
Line | |
---|
1 | <?php
|
---|
2 |
|
---|
3 | include_once('Common/Global.php');
|
---|
4 | GlobalInit();
|
---|
5 | if(!$System->IsInstalled()) die('System not installed.');
|
---|
6 | $System->Init();
|
---|
7 | $System->PathItems = ProcessURL();
|
---|
8 | //print_r($_GET);
|
---|
9 | //print_r($System->PathItems);
|
---|
10 |
|
---|
11 | $Page = $System->PathItems[0];
|
---|
12 | //if(substr($Page, -1) == '/') $Page = substr($Page, 0, -1);
|
---|
13 | print_r($System->Pages);
|
---|
14 | if(array_key_exists($Page, $System->Pages))
|
---|
15 | {
|
---|
16 | $PageClass = $System->Pages[$Page];
|
---|
17 | } else $PageClass = 'MissingPage';
|
---|
18 | $PageObject = new $PageClass();
|
---|
19 | $PageObject->Database = &$Database;
|
---|
20 | $PageObject->System = &$System;
|
---|
21 | $PageObject->GetOutput();
|
---|
22 |
|
---|
23 | //phpinfo();
|
---|
24 | ?>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.