Changeset 594 for trunk/Common
- Timestamp:
- Nov 2, 2013, 11:23:19 PM (11 years ago)
- Location:
- trunk/Common
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/AppModule.php
r593 r594 235 235 foreach($this->Modules as $RefModule) 236 236 { 237 $DepModule = $this->Modules[$Dependency];238 237 if(in_array($Module->Name, $RefModule->Dependencies) and 239 238 (in_array(ModuleCondition::All, $Conditions) or … … 273 272 } 274 273 274 function UninstallAll() 275 { 276 $this->Perform($this->Modules, array(ModuleAction::Uninstall)); 277 $this->SaveState(); 278 } 279 275 280 function ModulePresent($Name) 276 281 { -
trunk/Common/Page.php
r590 r594 87 87 $Output .= '<div id="Title">'.$Title.'</div> 88 88 <div class="Navigation"><span class="MenuItem"><strong>Navigace :: </strong> '.$Navigation.'</span><div class="MenuItem2">'; 89 if( $this->System->Config['Web']['UserSupport'] == 1)89 if(isset($this->System->User) and ($this->System->Config['Web']['UserSupport'] == 1)) 90 90 { 91 if( isset($this->System->User) and ($this->System->User->User['Id'] == null))91 if($this->System->User->User['Id'] == null) 92 92 $Output .= '<a href="'.$this->System->Link('/?Action=LoginForm').'">Přihlášení</a> '. 93 93 '<a href="'.$this->System->Link('/?Action=UserRegister').'">Registrace</a>'; -
trunk/Common/Setup/Setup.php
r593 r594 404 404 $this->Database->query("INSERT INTO `SystemVersion` (`Id`, `Revision`) VALUES 405 405 (1, 591);"); 406 $this->Database->query("CREATE TABLE IF NOT EXISTS `Module` ( 407 `Id` int(11) NOT NULL AUTO_INCREMENT, 408 `Name` varchar(255) NOT NULL, 409 `Title` varchar(255) NOT NULL, 410 PRIMARY KEY (`Id`) 411 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;"); 406 412 } 407 413 408 414 function Uninstall() 409 415 { 416 $this->System->ModuleManager->UninstallAll(); 417 $this->Database->query('DROP TABLE `Module`'); 410 418 $this->Database->query('DROP TABLE `SystemVersion`'); 411 419 } … … 419 427 function Upgrade() 420 428 { 421 $Output = $this-> ModuleManager->Update();429 $Output = $this->UpdateManager->Upgrade(); 422 430 return($Output); 423 431 } -
trunk/Common/Setup/Update.php
r592 r594 38 38 } 39 39 40 function Up date()40 function Upgrade() 41 41 { 42 42 $DbRevision = $this->GetDbVersion();
Note:
See TracChangeset
for help on using the changeset viewer.