-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into 'master'
Develop Closes DHBWB-104 See merge request ILIAS/Plugins/UserDefaults!36
- Loading branch information
Showing
19 changed files
with
203 additions
and
70 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
# Changelog | ||
|
||
## [1.4.0] | ||
- ILIAS 5.4 support | ||
- Remove ILIAS 5.2 support | ||
|
||
## [1.3.19] | ||
- Fix working on ILIAS 5.2 |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,46 @@ | ||
<?php | ||
|
||
namespace srag\Plugins\UserDefaults\Access; | ||
|
||
use ilUserDefaultsPlugin; | ||
use srag\DIC\UserDefaults\DICTrait; | ||
use srag\Plugins\UserDefaults\Utils\UserDefaultsTrait; | ||
|
||
/** | ||
* Class LocalRoles | ||
* | ||
* @package srag\Plugins\UserDefaults\Access | ||
* | ||
* @author studer + raimann ag - Team Custom 1 <support-custom1@studer-raimann.ch> | ||
*/ | ||
final class LocalRoles { | ||
|
||
use DICTrait; | ||
use UserDefaultsTrait; | ||
const PLUGIN_CLASS_NAME = ilUserDefaultsPlugin::class; | ||
const TYPE_LOCAL_ROLE = "role"; | ||
/** | ||
* @var self | ||
*/ | ||
protected static $instance = NULL; | ||
|
||
|
||
/** | ||
* @return self | ||
*/ | ||
public static function getInstance()/*: self*/ { | ||
if (self::$instance === NULL) { | ||
self::$instance = new self(); | ||
} | ||
|
||
return self::$instance; | ||
} | ||
|
||
|
||
/** | ||
* LocalRole constructor | ||
*/ | ||
private function __construct() { | ||
|
||
} | ||
} |
Oops, something went wrong.