19 declare(strict_types=1);
47 $this->pattern = $patterns;
61 $this->filter_type = $a_type;
72 $query =
'INSERT INTO didactic_tpl_abr (action_id,filter_type) ' .
77 $this->db->manipulate($query);
82 $pattern->setParentType(self::PATTERN_PARENT_TYPE);
89 public function delete():
void 92 $query =
'DELETE FROM didactic_tpl_abr ' .
93 'WHERE action_id = ' . $this->db->quote($this->
getActionId(),
'integer');
94 $this->db->manipulate($query);
107 foreach ($roles as $role_id => $role) {
117 $assign = $this->review->isAssignable($a_role_id, $source->
getRefId()) ?
'y' :
'n';
120 $this->admin->revokeSubtreePermissions($source->
getRefId(), $a_role_id);
123 $this->admin->deleteSubtreeTemplates($source->
getRefId(), $a_role_id);
125 $this->admin->assignRoleToFolder(
140 foreach ($roles as $role_id => $role) {
152 if ($this->review->getRoleFolderOfRole($a_role_id) === $source->
getRefId()) {
157 $this->admin->deleteLocalRole($a_role_id, $source->
getRefId());
161 $role->changeExistingObjects(
171 return self::TYPE_BLOCK_ROLE;
179 case self::FILTER_SOURCE_OBJ_ID:
180 $writer->
xmlStartTag(
'roleFilter', [
'source' =>
'objId']);
183 case self::FILTER_PARENT_ROLES:
184 $writer->
xmlStartTag(
'roleFilter', [
'source' =>
'parentRoles']);
187 case self::FILTER_SOURCE_TITLE:
189 $writer->
xmlStartTag(
'roleFilter', [
'source' =>
'title']);
194 $pattern->toXml($writer);
214 $query =
'SELECT * FROM didactic_tpl_abr ' .
216 $res = $this->db->query($query);
224 self::PATTERN_PARENT_TYPE
Description of ilDidacticTemplateBlockRoleAction.
addFilterPattern(ilDidacticTemplateFilterPattern $pattern)
setFilterPatterns(array $patterns)
Set filter patterns.
blockRole(int $a_role_id, ilObject $source)
getFilterPattern()
Get filter patterns.
setFilterType(int $a_type)
__construct(int $action_id=0)
toXml(ilXmlWriter $writer)
xmlEndTag(string $tag)
Writes an endtag.
filterRoles(ilObject $source)
static _lookupTitle(int $obj_id)
Abstract class for template actions.
static lookupPatternsByParentId(int $a_parent_id, string $a_parent_type)
deleteLocalPolicy(int $a_role_id, ilObject $source)
const MODE_UNPROTECTED_DELETE_LOCAL_POLICIES
__construct(Container $dic, ilPlugin $plugin)
xmlStartTag(string $tag, ?array $attrs=null, bool $empty=false, bool $encode=true, bool $escape=true)
Writes a starttag.
Represents a filter pattern for didactic template actions.