40 protected function __construct(
bool $a_is_granted, array $a_not_granted_reasons)
44 $this->
access = $DIC->access();
45 $this->is_granted = $a_is_granted;
46 $this->not_granted_reasons = $a_not_granted_reasons;
48 $this->
lng = $DIC->language();
74 public static function getInfo(
int $a_ref_id,
int $a_user_id): self
79 $lng = $DIC->language();
80 $access = $DIC->access();
83 $assignment_info = $repo_obj_ass->getAssignmentInfoOfObj($a_ref_id, $a_user_id);
84 if (count($assignment_info) == 0) {
85 return new self(
true, []);
90 foreach ($assignment_info as
$i) {
91 if (!$i->isUserSubmission()) {
92 $has_write_permission =
false;
93 foreach ($i->getReadableRefIds() as $exc_ref_id) {
95 $has_write_permission =
true;
98 if (!$has_write_permission) {
100 $reasons[0] = $lng->
txt(
"exc_obj_not_submitted_by_user");
105 return new self($granted, $reasons);
getNotGrantedReasons()
Get reasons why access is not granted.
static getInfo(int $a_ref_id, int $a_user_id)
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
array $not_granted_reasons
isGranted()
Is access granted due to exercise assignment conditions?
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(bool $a_is_granted, array $a_not_granted_reasons)
Constructor.
checkAccessOfUser(int $a_user_id, string $a_permission, string $a_cmd, int $a_ref_id, string $a_type="", ?int $a_obj_id=null, ?int $a_tree_id=null)
check access for an object (provide $a_type and $a_obj_id if available for better performance) ...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...