Changeset 897 for trunk/Common


Ignore:
Timestamp:
Jan 22, 2021, 12:04:30 AM (3 years ago)
Author:
chronos
Message:
  • Modified: Setup module is always installed and enabled to be executed as base system module. From Setup module all other system modules can be installed.
  • Added: Allow to install, uninstall, enable, disable and upgrade all user modules.
  • Added: Created ModuleManager app module for managing other modules.
  • Modified: Keep InstalledVersion for installed modules in ModulesConfig.php.
  • Added: Distinction between system, library and application module types.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Common/Form/Form.php

    r887 r897  
    450450    if (!array_key_exists('SQL', $Class) and ($Class['Table'] != ''))
    451451    {
    452       $DbResult = $this->Database->query('SELECT * FROM information_schema.tables  WHERE table_schema = "centrala_big"
    453           AND table_name = "'.$Class['Table'].'" LIMIT 1');
    454       if ($DbResult->num_rows == 0) continue;
     452      if (!$this->Database->TableExists($Class['Table'])) continue;
    455453
    456454      echo($Class['Table'].'<br>');
Note: See TracChangeset for help on using the changeset viewer.