Changeset 95 for trunk/www/Base/System.php
- Timestamp:
- Dec 21, 2014, 10:46:18 AM (10 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
-
Property svn:ignore
set to
.buildpath
.project
.settings
-
Property svn:ignore
set to
-
trunk/www/Base/System.php
r93 r95 5 5 include_once(dirname(__FILE__).'/Table.php'); 6 6 include_once(dirname(__FILE__).'/Error.php'); 7 include_once(dirname(__FILE__).'/AppModule.php'); 7 8 8 9 $PrefixMultipliers = array … … 117 118 $this->Database = new Database($this->Config['Database']['Host'], $this->Config['Database']['User'], $this->Config['Database']['Password'], $this->Config['Database']['Database']); 118 119 $this->Database->Prefix = $this->Config['Database']['Prefix']; 119 $this->Database->charset($this->Config['Database']['Charset']); 120 $this->Database->charset($this->Config['Database']['Charset']); 121 122 $this->ModuleManager = new AppModuleManager($this); 120 123 } 121 124 … … 126 129 127 130 $ControllerName = $Module.'Controller'; 128 $FileName = dirname(__FILE__).'/../ Application/Controller/'.$Module.'.php';131 $FileName = dirname(__FILE__).'/../Module/'.$Module.'/Controller.php'; 129 132 if(!file_exists($FileName)) 130 133 echo('Soubor '.$FileName.' nenalezen.');
Note:
See TracChangeset
for help on using the changeset viewer.