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/Modules/Wiki/Wiki.php

    r895 r897  
    3030    while ($DbRow = $DbResult->fetch_assoc())
    3131    {
    32       $this->System->RegisterPage([$DbRow['NormalizedName']], 'PageWiki');
    33       $this->System->RegisterMenuItem(array(
     32      Core::Cast($this->System)->RegisterPage([$DbRow['NormalizedName']], 'PageWiki');
     33      Core::Cast($this->System)->RegisterMenuItem(array(
    3434        'Title' => $DbRow['Name'],
    3535        'Hint' => '',
    36         'Link' => $this->System->Link('/'.$DbRow['NormalizedName'].'/'),
     36        'Link' => Core::Cast($this->System)->Link('/'.$DbRow['NormalizedName'].'/'),
    3737        'Permission' => LICENCE_ANONYMOUS,
    3838        'Icon' => '',
Note: See TracChangeset for help on using the changeset viewer.