-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add FKCs to the modules tables (#1130)
* Add FKCs to the modules tables (modules_boxes_content, modules_content, modules_folderrights, modules_php_extensions). * Add all modules to modules table (this was required for the FKC for modules_boxes_content and is done in the install module). * Add config.php for install module. * Remove some info from config.php of error module as it would otherwise be added to the module menu.
- Loading branch information
1 parent
0beed3c
commit 2de72ff
Showing
5 changed files
with
172 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?php | ||
|
||
/** | ||
* @copyright Ilch 2 | ||
* @package ilch | ||
*/ | ||
|
||
namespace Modules\Install\Config; | ||
|
||
class Config extends \Ilch\Config\Install | ||
{ | ||
public $config = [ | ||
'key' => 'install', | ||
'system_module' => true | ||
]; | ||
|
||
public function install() | ||
{ | ||
|
||
} | ||
|
||
public function getUpdate($installedVersion) | ||
{ | ||
|
||
} | ||
} |
Oops, something went wrong.