Ignore:
Timestamp:
Jan 18, 2012, 1:42:13 PM (13 years ago)
Author:
chronos
Message:
  • Upraveno: Administrace síťových zařízení přesunuta do systémového modulu Network. Zde doplněny použité modely pro inicializaci databáze.
  • Upraveno: Relace ManyToMany má nyní vhodnější parametry pro sestavení pomocné tabulky.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Module.php

    r358 r360  
    9393  `Installed` int(11) NOT NULL,
    9494  `Description` text COLLATE utf8_czech_ci NOT NULL,
     95  `Dependecies` varchar(255) COLLATE utf8_czech_ci NOT NULL,
    9596  PRIMARY KEY (`Id`)
    9697) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_czech_ci AUTO_INCREMENT=1;');
     
    141142          'Version' => $Module->Version, 'Creator' => $Module->Creator,
    142143          'Description' => $Module->Description, 'License' => $Module->License,
    143           'Installed' => 0));
     144          'Installed' => 0, 'Dependecies' => implode(',', $Module->Dependencies)));
    144145        unset($Module);
    145146      } else throw new Exception('Missing class '.$ModuleClassName.' in module '.$ModuleName);
Note: See TracChangeset for help on using the changeset viewer.