Ignore:
Timestamp:
Jan 17, 2012, 8:40:51 AM (13 years ago)
Author:
chronos
Message:
  • Přesunuto: Jednotky code a error.
  • Přidáno: Třída ModularSystem pro správu modulů systému.
  • Přidáno: Synchronizace seznamu modulů na disku a v databázi.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/User/user.php

    r340 r341  
    266266}
    267267
     268class ModuleUser extends Module
     269{
     270  function __construct($Database)
     271  {
     272    parent::__construct($Database);
     273    $this->Name = 'User';
     274    $this->Version = '1.0';
     275    $this->Creator = 'Chronos';
     276    $this->License = 'GNU/GPL';
     277    $this->Description = 'User management';
     278    $this->Dependencies = array();
     279    //$this->Models = array('User', 'UserOnline');
     280  }
     281}
     282
     283
    268284?>
Note: See TracChangeset for help on using the changeset viewer.