Changeset 586 for trunk/Modules/File


Ignore:
Timestamp:
Oct 31, 2013, 9:30:09 PM (11 years ago)
Author:
chronos
Message:
  • Upraveno: Aplikační moduly nyní implementují párové funkce s prefixem Do. Tyto funkce jsou volány nadřazenými bez prefixu. Díky tomu také není nutné volat z modulů parent funkci. Třída Module zajistí vše potřebné okolo.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/File/File.php

    r565 r586  
    105105  } 
    106106
    107   function Install()
     107  function DoInstall()
    108108  {
    109     parent::Install();
    110109  }
    111110 
    112   function Uninstall()
     111  function DoUninstall()
    113112  {     
    114     parent::Uninstall();
    115113  }
    116114 
    117   function Start()
     115  function DoStart()
    118116  {
    119117    global $Config;
    120118   
    121     parent::Start();
    122119    $this->System->RegisterPage('file', 'PageFile');
    123120    $this->System->AddModule(new File($this->System));
     
    147144  } 
    148145 
    149   function Stop()
    150   {
    151     parent::Stop();   
     146  function DoStop()
     147  {   
    152148  }
    153149}
Note: See TracChangeset for help on using the changeset viewer.