Changeset 594 for trunk/Common


Ignore:
Timestamp:
Nov 2, 2013, 11:23:19 PM (11 years ago)
Author:
chronos
Message:
  • Upraveno: Vylepšena instalace modulu User.
Location:
trunk/Common
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Common/AppModule.php

    r593 r594  
    235235    foreach($this->Modules as $RefModule)
    236236    {
    237       $DepModule = $this->Modules[$Dependency];
    238237      if(in_array($Module->Name, $RefModule->Dependencies) and
    239238          (in_array(ModuleCondition::All, $Conditions) or
     
    273272  }
    274273 
     274  function UninstallAll()
     275  {
     276    $this->Perform($this->Modules, array(ModuleAction::Uninstall));
     277    $this->SaveState();
     278  }
     279 
    275280  function ModulePresent($Name)
    276281  {
  • trunk/Common/Page.php

    r590 r594  
    8787      $Output .= '<div id="Title">'.$Title.'</div>
    8888      <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))
    9090      {
    91         if(isset($this->System->User) and ($this->System->User->User['Id'] == null))
     91        if($this->System->User->User['Id'] == null)
    9292          $Output .= '<a href="'.$this->System->Link('/?Action=LoginForm').'">Přihlášení</a> '.
    9393            '<a href="'.$this->System->Link('/?Action=UserRegister').'">Registrace</a>';
  • trunk/Common/Setup/Setup.php

    r593 r594  
    404404    $this->Database->query("INSERT INTO `SystemVersion` (`Id`, `Revision`) VALUES
    405405      (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 ;");
    406412  }
    407413 
    408414  function Uninstall()
    409415  {
     416    $this->System->ModuleManager->UninstallAll();
     417    $this->Database->query('DROP TABLE `Module`');
    410418    $this->Database->query('DROP TABLE `SystemVersion`');
    411419  }
     
    419427  function Upgrade()
    420428  {
    421     $Output = $this->ModuleManager->Update();
     429    $Output = $this->UpdateManager->Upgrade();
    422430    return($Output);
    423431  }
  • trunk/Common/Setup/Update.php

    r592 r594  
    3838  }
    3939 
    40   function Update()
     40  function Upgrade()
    4141  {
    4242          $DbRevision = $this->GetDbVersion();
Note: See TracChangeset for help on using the changeset viewer.