Ignore:
Timestamp:
Jan 17, 2012, 1:00:26 PM (13 years ago)
Author:
chronos
Message:
  • Upraveno: Správa uživatelů je nyní přetvořena na modul modulárního systému.
  • Upraveno: Hlavní objekt System je nyní odvozen z třídy ModularSystem.
File:
1 edited

Legend:

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

    r342 r343  
    66class Project extends Model
    77{
    8   function __construct($Database)
     8  function __construct($Database, $System)
    99  {
    10     parent::__construct($Database);
     10    parent::__construct($Database, $System);
    1111    $this->Name = 'Project';
    1212    $this->AddPropertyDateTime('TimeSchedule');
     
    1919class ProjectComment extends Model
    2020{
    21   function __construct($Database)
     21  function __construct($Database, $System)
    2222  {
    23     parent::__construct($Database);
     23    parent::__construct($Database, $System);
    2424    $this->Name = 'ProjectComment';
    2525    $this->AddPropertyOneToMany('Project', 'Project');
     
    3030class ModuleProject extends Module
    3131{
    32   function __construct($Database)
     32  function __construct($Database, $System)
    3333  {
    34     parent::__construct($Database);
     34    parent::__construct($Database, $System);
    3535    $this->Name = 'Project';
    3636    $this->Version = '1.0';
     
    5151    parent::UnInstall();
    5252  } 
     53 
     54  function Init()
     55  {
     56  }
    5357}
    5458
Note: See TracChangeset for help on using the changeset viewer.