Changeset 782 for trunk/Application/System.php
- Timestamp:
- Jan 9, 2016, 11:10:49 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Application/System.php
r781 r782 7 7 include_once(dirname(__FILE__).'/../Common/Global.php'); 8 8 include_once(dirname(__FILE__).'/FormClasses.php'); 9 include_once(dirname(__FILE__).'/FullInstall.php'); 10 include_once(dirname(__FILE__).'/UpdateTrace.php'); 11 include_once(dirname(__FILE__).'/View.php'); 9 12 10 13 class Core extends Application … … 80 83 function ShowPage() 81 84 { 85 $this->BaseView = new BaseView($this); 86 82 87 /* @var $Page Page */ 83 88 $ClassName = $this->SearchPage($this->PathItems, $this->Pages); … … 85 90 { 86 91 $Page = new $ClassName($this); 87 $Page->GetOutput();88 92 } else { 89 93 $Page = new PageMissing($this); 90 $Page->GetOutput();91 }94 } 95 echo($this->BaseView->GetOutput($Page)); 92 96 } 93 97 … … 99 103 function AddModule($Module) 100 104 { 101 //echo('Přidávám modul '.get_class($Module).'<br />');102 105 $this->Modules[get_class($Module)] = $Module; 103 106 }
Note:
See TracChangeset
for help on using the changeset viewer.