3 declare(strict_types=1);
12 public function __construct(
object $a_parent_obj,
string $a_parent_cmd =
'')
14 $this->
setId(
'sysc_tree_duplicates');
18 public function init(): void
24 $this->
setRowTemplate(
'tpl.sc_tree_duplicates_row.html',
'Services/Tree');
26 $this->
addColumn($this->
lng->txt(
'sysc_duplicates_repository'),
'');
27 $this->
addColumn($this->
lng->txt(
'sysc_duplicates_trash'),
'');
30 'deleteDuplicatesFromRepository',
31 $this->
lng->txt(
'sysc_delete_duplicates_from_repository')
33 $this->
addCommandButton(
'deleteDuplicatesFromTrash', $this->
lng->txt(
'sysc_delete_duplicates_from_trash'));
36 public function parse(
int $a_duplicate_id): void
38 $this->
setData(array(array(
'id' => $a_duplicate_id)));
41 protected function fillRow(array $a_set): void
43 $id = (
int) ($a_set[
'id'] ?? 0);
46 $this->tpl->setVariable(
'DUP_ID',
$id);
48 foreach ($duplicates as $a_id => $node) {
49 $child_id = (
int) ($node[
'child'] ?? 0);
50 if (isset($node[
'tree']) && $node[
'tree'] == 1) {
53 $start_depth = (
int) ($node[
'depth'] ?? 0);
55 $this->
fillObjectRow($node[
'tree'], $child_id, $start_depth,
'');
58 $path->enableHideLeaf(
true);
59 $path->enableTextOnly(
false);
62 foreach ($childs as $child) {
63 $this->
fillObjectRow($node[
'tree'], $child, $start_depth,
'');
66 if (isset($node[
'tree']) && $node[
'tree'] < 1) {
69 $start_depth = (
int) ($node[
'depth'] ?? 0);
71 $this->
fillObjectRow($node[
'tree'], $child_id, $start_depth,
'b');
73 foreach ($childs as $child) {
74 $this->
fillObjectRow($node[
'tree'], $child, $start_depth,
'b');
80 protected function fillObjectRow(
int $a_tree_id,
int $a_ref_id,
int $a_start_depth,
string $a_prefix): void
84 $depth = (
int) ($child_data[
'depth'] ?? 0);
85 for (
$i = $a_start_depth;
$i <= $depth;
$i++) {
86 $this->tpl->touchBlock($a_prefix .
'padding');
87 $this->tpl->touchBlock($a_prefix .
'end_padding');
89 $this->tpl->setVariable($a_prefix .
'OBJ_TITLE', (
string) ($child_data[
'title'] ??
''));
91 if (isset($child_data[
'description']) && $child_data[
'description']) {
92 $this->tpl->setVariable($a_prefix .
'VAL_DESC', $child_data[
'description']);
94 $this->tpl->setVariable(
95 $a_prefix .
'TYPE_IMG',
96 ilObject::_getIcon((
int) ($child_data[
'obj_id'] ?? 0),
"small", (
string) ($child_data[
'type'] ??
''))
98 $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)
Creates a path for a start and endnode.
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)