19 declare(strict_types=1);
33 public function __construct(
int $role_id,
string $type, array $ops,
int $ref_id)
43 return hash(
"sha256", self::class);
48 $ops = implode(
",", $this->ops);
49 return "Set role permission (role id=$this->role_id;type=$this->type;ops=$ops;ref id=$this->ref_id)";
66 $db = $environment->
getResource(Environment::RESOURCE_DATABASE);
68 foreach ($this->ops as $ops_id) {
69 if ($ops_id == self::RBAC_OP_COPY) {
76 'rol_id' => [
'integer', $this->role_id],
77 'type' => [
'text', $this->type],
78 'ops_id' => [
'integer', $ops_id],
79 'parent' => [
'integer', $this->ref_id]
static _getCustomRBACOperationId(string $operation, ?\ilDBInterface $ilDB=null)
isApplicable(Environment $environment)
getPreconditions(Environment $environment)
__construct(int $role_id, string $type, array $ops, int $ref_id)
achieve(Environment $environment)
getResource(string $id)
Consumers of this method should check if the result is what they expect, e.g.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
An environment holds resources to be used in the setup process.