19 declare(strict_types=1);
26 public function __construct(
object $a_parent_obj,
string $a_parent_cmd =
'')
28 $this->
setId(
'sysc_tree_duplicates');
32 public function init(): void
38 $this->
setRowTemplate(
'tpl.sc_tree_duplicates_row.html',
'components/ILIAS/Tree');
40 $this->
addColumn($this->
lng->txt(
'sysc_duplicates_repository'),
'');
41 $this->
addColumn($this->
lng->txt(
'sysc_duplicates_trash'),
'');
44 'deleteDuplicatesFromRepository',
45 $this->
lng->txt(
'sysc_delete_duplicates_from_repository')
47 $this->
addCommandButton(
'deleteDuplicatesFromTrash', $this->
lng->txt(
'sysc_delete_duplicates_from_trash'));
50 public function parse(
int $a_duplicate_id): void
52 $this->
setData(array(array(
'id' => $a_duplicate_id)));
55 protected function fillRow(array $a_set): void
57 $id = (
int) ($a_set[
'id'] ?? 0);
60 $this->tpl->setVariable(
'DUP_ID',
$id);
62 foreach ($duplicates as $a_id => $node) {
63 $child_id = (
int) ($node[
'child'] ?? 0);
64 if (isset($node[
'tree']) && $node[
'tree'] == 1) {
67 $start_depth = (
int) ($node[
'depth'] ?? 0);
69 $this->
fillObjectRow($node[
'tree'], $child_id, $start_depth,
'');
72 $path->enableHideLeaf(
true);
73 $path->enableTextOnly(
false);
76 foreach ($childs as $child) {
77 $this->
fillObjectRow($node[
'tree'], $child, $start_depth,
'');
80 if (isset($node[
'tree']) && $node[
'tree'] < 1) {
83 $start_depth = (
int) ($node[
'depth'] ?? 0);
85 $this->
fillObjectRow($node[
'tree'], $child_id, $start_depth,
'b');
87 foreach ($childs as $child) {
88 $this->
fillObjectRow($node[
'tree'], $child, $start_depth,
'b');
94 protected function fillObjectRow(
int $a_tree_id,
int $a_ref_id,
int $a_start_depth,
string $a_prefix): void
98 $depth = (
int) ($child_data[
'depth'] ?? 0);
99 for ($i = $a_start_depth; $i <= $depth; $i++) {
100 $this->tpl->touchBlock($a_prefix .
'padding');
101 $this->tpl->touchBlock($a_prefix .
'end_padding');
103 $this->tpl->setVariable($a_prefix .
'OBJ_TITLE', (
string) ($child_data[
'title'] ??
''));
105 if (isset($child_data[
'description']) && $child_data[
'description']) {
106 $this->tpl->setVariable($a_prefix .
'VAL_DESC', $child_data[
'description']);
108 $this->tpl->setVariable(
109 $a_prefix .
'TYPE_IMG',
110 ilObject::_getIcon((
int) ($child_data[
'obj_id'] ?? 0),
"small", (
string) ($child_data[
'type'] ??
''))
112 $this->tpl->setVariable($a_prefix .
'TYPE_STR', $this->
lng->txt(
'obj_' . ($child_data[
'type'] ??
'')));
fillObjectRow(int $a_tree_id, int $a_ref_id, int $a_start_depth, string $a_prefix)
parse(int $a_duplicate_id)
static _getIcon(int $obj_id=0, string $size="big", string $type="", bool $offline=false)
Get icon for repository item.
setFormAction(string $a_form_action, bool $a_multipart=false)
addCommandButton(string $a_cmd, string $a_text, string $a_onclick='', string $a_id="", string $a_class="")
setDisableFilterHiding(bool $a_val=true)
setExternalSorting(bool $a_val)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
Defines a system check task.
static findDuplicates(int $a_duplicate_id)
static getNodeInfo(int $a_tree_id, int $a_child)
__construct(Container $dic, ilPlugin $plugin)
__construct(object $a_parent_obj, string $a_parent_cmd='')
static getChilds(int $a_tree_id, int $a_childs)
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)