19 declare(strict_types=1);
53 $this->
logger = $DIC->logger()->otpl();
54 $this->db = $DIC->database();
55 $this->review = $DIC->rbac()->review();
56 $this->admin = $DIC->rbac()->admin();
74 $this->action_id = $a_action_id;
77 public function setType(
int $a_type_id): void
79 $this->type = $a_type_id;
84 $this->tpl_id = $a_id;
94 $this->ref_id = $a_ref_id;
113 $this->
setActionId($this->db->nextId(
'didactic_tpl_a'));
114 $query =
'INSERT INTO didactic_tpl_a (id, tpl_id, type_id) ' .
116 $this->db->quote($this->
getActionId(),
'integer') .
', ' .
118 $this->db->quote($this->
getType(),
'integer') .
120 $this->db->manipulate($query);
129 public function delete():
void 131 $query =
'DELETE FROM didactic_tpl_a ' .
132 'WHERE id = ' . $this->db->quote($this->
getActionId(),
'integer');
133 $this->db->manipulate($query);
138 $query =
'SELECT * FROM didactic_tpl_a ' .
139 'WHERE id = ' . $this->db->quote($this->
getActionId(),
'integer');
140 $res = $this->db->query($query);
156 abstract public function apply(): bool;
162 abstract public function revert(): bool;
181 self::PATTERN_PARENT_TYPE
185 foreach ($this->review->getParentRoleIds($source->
getRefId()) as $role_id => $role) {
186 $role_id = (
int) $role_id;
187 switch ($this->getFilterType()) {
188 case self::FILTER_PARENT_ROLES:
189 $this->
logger->dump($role);
191 $role[
'assign'] ===
'y' &&
192 (
int) $role[
'parent'] === $source->
getRefId()
195 $this->
logger->debug(
'Excluding local role: ' . $role[
'title']);
198 foreach ($patterns as $pattern) {
201 $filtered[$role_id] = $role;
206 case self::FILTER_LOCAL_ROLES:
208 $role[
'assign'] ===
'n' ||
209 (
int) $role[
'parent'] !== $source->
getRefId()
211 $this->
logger->debug(
'Excluding non local role' . $role[
'title']);
214 foreach ($patterns as $pattern) {
217 $filtered[$role_id] = $role;
223 case self::FILTER_SOURCE_TITLE:
224 foreach ($patterns as $pattern) {
227 $filtered[$role_id] = $role;
const FILTER_PARENT_ROLES
save()
Write action to db Overwrite for filling additional db fields.
filterRoles(ilObject $source)
getType()
Get type of template.
static _lookupTitle(int $obj_id)
const PATTERN_PARENT_TYPE
static getInstanceByRefId(int $ref_id, bool $stop_on_error=true)
get an instance of an Ilias object by reference id
const FILTER_SOURCE_OBJ_ID
Abstract class for template actions.
static lookupPatternsByParentId(int $a_parent_id, string $a_parent_type)
Class ilRbacAdmin Core functions for role based access control.
__construct(int $action_id=0)
const FILTER_SOURCE_TITLE
setActionId(int $a_action_id)
toXml(ilXmlWriter $writer)
revert()
Implement everthing that is necessary to revert a didactic template return bool.