Changeset 590 for trunk/Common
- Timestamp:
- Nov 2, 2013, 12:10:42 AM (11 years ago)
- Location:
- trunk/Common
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/AppModule.php
r587 r590 64 64 function Install() 65 65 { 66 if($this->Installed) return; 67 $List = array(); 68 $this->Manager->EnumDependenciesCascade($this, $List, array(ModuleCondition::NotInstalled)); 69 $this->Manager->Perform($List, array(ModuleAction::Install), array(ModuleCondition::NotInstalled)); 70 $this->DoInstall(); 66 71 $this->Installed = true; 67 72 } … … 69 74 function Uninstall() 70 75 { 71 $this->Installed = false; 76 if(!$this->Installed) return; 77 $this->Stop(); 78 $this->Installed = false; 79 $List = array(); 80 $this->Manager->EnumSuperiorDependenciesCascade($this, $List, array(ModuleCondition::Installed)); 81 $this->Manager->Perform($List, array(ModuleAction::Uninstall), array(ModuleCondition::Installed)); 82 $this->DoUninstall(); 83 } 84 85 function Reinstall() 86 { 87 $this->Uninstall(); 88 $this->Install(); 72 89 } 73 90 74 91 function Start() 75 92 { 76 if($this->Running) return; 93 if($this->Running) return; 94 if(!$this->Installed) return; 77 95 $List = array(); 78 96 $this->Manager->EnumDependenciesCascade($this, $List, array(ModuleCondition::NotRunning)); … … 119 137 { 120 138 var $Modules; 139 var $ModulesAvail; 121 140 var $System; 122 141 var $OnLoadModules; -
trunk/Common/Database.php
r589 r590 77 77 function query($Query) 78 78 { 79 if(!$this->Connected()) throw new Exception('Not connected to database'); 79 80 $this->LastQuery = $Query; 80 81 if($this->ShowSQLQuery == true) -
trunk/Common/Page.php
r578 r590 13 13 var $ShortTitle; 14 14 var $FullTitle; 15 var $Encoding; 16 var $Style; 15 17 16 18 function __construct($System) … … 18 20 parent::__construct($System); 19 21 20 $this->FormatHTML = $this->System->Config['Web']['FormatHTML']; 21 $this->ShowRuntimeInfo = $this->System->Config['Web']['ShowRuntimeInfo']; 22 $this->FormatHTML = false; 23 $this->ShowRuntimeInfo = false; 24 $this->Encoding = 'utf-8'; 25 $this->Style = 'new'; 26 27 // TODO: Move to external code 28 if(isset($this->System->Config['Web']['FormatHTML'])) 29 $this->FormatHTML = $this->System->Config['Web']['FormatHTML']; 30 if(isset($this->System->Config['Web']['ShowRuntimeInfo'])) 31 $this->ShowRuntimeInfo = $this->System->Config['Web']['ShowRuntimeInfo']; 32 if(isset($this->System->Config['Web']['Charset'])) 33 $this->Encoding = $this->System->Config['Web']['Charset']; 34 if(isset($this->System->Config['Web']['Style'])) 35 $this->Style = $this->System->Config['Web']['Style']; 22 36 } 23 37 … … 48 62 { 49 63 $Navigation = ' > <a href="'.$this->System->Link($ScriptName).'/">'.$Page->ShortTitle.'</a>'.$Navigation; 50 51 if( $Page->ParentClass != '')64 65 if(class_exists($Page->ParentClass)) 52 66 { 53 67 $PageClass = $Page->ParentClass; … … 61 75 if(isset($this->Load)) $BodyParam .= ' onload="'.$this->Load.'"'; 62 76 if(isset($this->Unload)) $BodyParam .= ' onunload="'.$this->Unload.'"'; 63 $Output = '<?xml version="1.0" encoding="'.$this-> System->Config['Web']['Charset'].'"?>'."\n".77 $Output = '<?xml version="1.0" encoding="'.$this->Encoding.'"?>'."\n". 64 78 '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">'. 65 79 '<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cs" lang="cs">'. 66 '<head><link rel="stylesheet" href="'.$this->System->Link('/style/').$this->S ystem->Config['Web']['Style'].'/style.css" type="text/css" media="all" />'.67 '<meta http-equiv="content-type" content="application/xhtml+xml; charset='.$this-> System->Config['Web']['Charset'].'" />'.68 '<script type="text/javascript" src="'.$this->System->Link('/style/').$this->S ystem->Config['Web']['Style'].'/global.js"></script>'.80 '<head><link rel="stylesheet" href="'.$this->System->Link('/style/').$this->Style.'/style.css" type="text/css" media="all" />'. 81 '<meta http-equiv="content-type" content="application/xhtml+xml; charset='.$this->Encoding.'" />'. 82 '<script type="text/javascript" src="'.$this->System->Link('/style/').$this->Style.'/global.js"></script>'. 69 83 '<title>'.$this->System->Config['Web']['Title'].' - '.$Path.'</title> 70 84 </head><body'.$BodyParam.'>'; … … 75 89 if($this->System->Config['Web']['UserSupport'] == 1) 76 90 { 77 if( $this->System->User->User['Id'] == null)91 if(isset($this->System->User) and ($this->System->User->User['Id'] == null)) 78 92 $Output .= '<a href="'.$this->System->Link('/?Action=LoginForm').'">Přihlášení</a> '. 79 93 '<a href="'.$this->System->Link('/?Action=UserRegister').'">Registrace</a>'; -
trunk/Common/System.php
r589 r590 27 27 $this->ShowPage = true; 28 28 $this->ConfigManager = new Config(); 29 $this->RootURLFolder = $_SERVER['SCRIPT_NAME']; 30 if(substr($this->RootURLFolder, -10, 10) == '/index.php') 31 $this->RootURLFolder = substr($this->RootURLFolder, 0, -10); 29 32 } 30 33 … … 42 45 $Page[$LastKey] = $Handler; 43 46 } else $this->Pages[$Path] = $Handler; 47 } 48 49 function UnregisterPage($Path) 50 { 51 unset($this->Pages[$Path]); 44 52 } 45 53 … … 129 137 //$Output .= 'Nelze se připojit k databázi.'; 130 138 } 131 $this->RootURLFolder = $this->Config['Web']['RootFolder']; 132 $this->FormManager->Root = $this->Config['Web']['RootFolder']; 139 if(isset($this->Config['Web']['RootFolder'])) 140 $this->RootURLFolder = $this->Config['Web']['RootFolder']; 141 $this->FormManager->Root = $this->RootURLFolder; 133 142 134 143 $Database = $this->Database; … … 138 147 include_once(dirname(__FILE__).'/../Modules/Setup/Setup.php'); 139 148 $this->ModuleManager->RegisterModule(new ModuleSetup($this)); 149 $this->ModuleManager->Modules['Setup']->Installed = true; 140 150 $this->ModuleManager->Modules['Setup']->Start(); 141 151 if($this->ModuleManager->Modules['Setup']->CheckState()) 142 152 { 143 153 $this->ModuleManager->LoadModules(); 154 $this->ModuleManager->Modules['Setup']->Installed = true; 144 155 $this->ModuleManager->Modules['Setup']->Start(); 145 156 $this->ModuleManager->StartAll();
Note:
See TracChangeset
for help on using the changeset viewer.