Ignore:
Timestamp:
Mar 13, 2012, 4:08:31 PM (13 years ago)
Author:
chronos
Message:
  • Upraveno: Seznam závislostí modulů načítán do samostatné tabulky.
  • Upraveno: V základu načíst jen základní moduly a umožnit doinstalaci dalších.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/Modular/Common/Model.php

    r378 r398  
    3333  var $Module;
    3434  var $Installed;
     35  var $Parent;
    3536 
    3637  function __construct($Database, $System)
     
    181182      if($Property['Null']) $Null = 'NULL';
    182183        else $Null = 'NOT NULL';
     184      $Null = 'NULL';
    183185      if($Property['Type'] == PropertyDateTime)
    184186        $Query .= '`'.$Property['Name'].'` DATETIME '.$Null.',';
     
    223225    }
    224226    $Query .= 'PRIMARY KEY (`Id`)'.
    225       ') ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci AUTO_INCREMENT=1 ;';         
     227      ') ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci AUTO_INCREMENT=1;';         
    226228    $this->Database->query($Query);
    227229    foreach($this->Properties as $Property)
Note: See TracChangeset for help on using the changeset viewer.