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/Network/Network.php

    r581 r586  
    111111  } 
    112112
    113   function Install()
    114   {
    115   }
    116  
    117   function Uninstall()
     113  function DoInstall()
     114  {
     115  }
     116 
     117  function DoUninstall()
    118118  {     
    119119  }
    120120 
    121   function Start()
    122   {
    123     parent::Start();
     121  function DoStart()
     122  {
    124123    $this->System->RegisterPage('network', 'PageNetwork');   
    125124    $this->System->RegisterPage(array('network', 'administration'), 'PageNetworkAdministration');
     
    280279  } 
    281280 
    282   function Stop()
     281  function DoStop()
    283282  {
    284283  }
Note: See TracChangeset for help on using the changeset viewer.