forked from ILIAS-eLearning/ILIAS
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TMS StudyProgramme: 8290 add new config option search recursive
TMS StudyProgramme: 8290 be secure there is a tree path TMS OrgUnit: 8290 move position events after action is executed TMS StudyProgramme: 8290 check on automatism euqlas sry is not necessary TMS StudyProgramme: 8291 use assignment of process to check user should be removed or not
- Loading branch information
Showing
9 changed files
with
212 additions
and
66 deletions.
There are no files selected for viewing
29 changes: 29 additions & 0 deletions
29
Modules/StudyProgramme/classes/Setup/ilStudyProgrammeAutoMembershipTableUpdateSteps.php
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,29 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
class ilStudyProgrammeAutoMembershipTableUpdateSteps implements ilDatabaseUpdateSteps | ||
{ | ||
public const TABLE_NAME = 'prg_auto_membership'; | ||
|
||
protected ilDBInterface $db; | ||
|
||
public function prepare(ilDBInterface $db): void | ||
{ | ||
$this->db = $db; | ||
} | ||
|
||
public function step_1(): void | ||
{ | ||
$this->db->addTableColumn( | ||
self::TABLE_NAME, | ||
'search_recursive', | ||
[ | ||
'type' => 'integer', | ||
'length' => 1, | ||
'default' => 0, | ||
'notnull' => false | ||
] | ||
); | ||
} | ||
} |
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
Oops, something went wrong.