ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
SubObjectRetrieval.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 
27 {
28  protected \ilLanguage $lng;
29  protected \ILIAS\UI\Factory $f;
30  protected ?array $childs = null;
31 
32  public function __construct(
33  protected \ilLMTree $lm_tree,
34  protected $type = "",
35  protected $current_node = 0,
36  protected $transl = ""
37  ) {
38  global $DIC;
39  $this->f = $DIC->ui()->factory();
40  $this->lng = $DIC->language();
41  }
42 
43  public function getChildTitle(array $child): string
44  {
45  if (!in_array($this->transl, ["-", ""])) {
46  $lmobjtrans = new \ilLMObjTranslation($child["child"], $this->transl);
47  return $lmobjtrans->getTitle();
48  }
49  return $child["title"];
50  }
51 
52  protected function getChilds(): array
53  {
54  $current_node = ($this->current_node > 0)
55  ? $this->current_node
56  : $this->lm_tree->readRootId();
57  if (is_null($this->childs)) {
58  $this->childs = $this->lm_tree->getChildsByType($current_node, $this->type);
59  }
60  return $this->childs;
61  }
62 
63  public function getData(
64  array $fields,
65  ?Range $range = null,
66  ?Order $order = null,
67  array $filter = [],
68  array $parameters = []
69  ): \Generator {
70  foreach ($this->getChilds() as $child) {
71  if ($child["type"] === "pg") {
72  // check activation
73  $lm_set = new \ilSetting("lm");
74  $active = \ilLMPage::_lookupActive(
75  $child["obj_id"],
76  "lm",
77  (bool) $lm_set->get("time_scheduled_page_activation")
78  );
79 
80  // is page scheduled?
81  $img_sc = ((bool) $lm_set->get("time_scheduled_page_activation") &&
82  \ilLMPage::_isScheduledActivation($child["obj_id"], "lm"))
83  ? "_sc"
84  : "";
85 
86  if (!$active) {
87  $img = "standard/icon_pg_d" . $img_sc . ".svg";
88  $alt = $this->lng->txt("cont_page_deactivated");
89  } else {
91  $child["obj_id"],
92  "lm"
93  )) {
94  $img = "standard/icon_pg_del" . $img_sc . ".svg";
95  $alt = $this->lng->txt("cont_page_deactivated_elements");
96  } else {
97  $img = "standard/icon_pg" . $img_sc . ".svg";
98  $alt = $this->lng->txt("pg");
99  }
100  }
101  } else {
102  $img = "standard/icon_st.svg";
103  $alt = $this->lng->txt("st");
104  }
105  $trans_title = "";
106  if (!in_array($this->transl, ["-", ""])) {
107  $trans_title = $this->getChildTitle($child);
108  }
109  yield [
110  "id" => $child["child"],
111  "type" => $this->f->symbol()->icon()->custom(\ilUtil::getImagePath($img), $alt),
112  "title" => $child["title"],
113  "trans_title" => $trans_title
114  ];
115  }
116  }
117 
118  public function count(
119  array $filter = [],
120  array $parameters = []
121  ): int {
122  return count($this->getChilds());
123  }
124 }
static _lookupActive(int $a_id, string $a_parent_type, bool $a_check_scheduled_activation=false, string $a_lang="-")
lookup activation status
static _isScheduledActivation(int $a_id, string $a_parent_type, string $a_lang="-")
Check whether page is activated by time schedule.
getData(array $fields, ?Range $range=null, ?Order $order=null, array $filter=[], array $parameters=[])
Both the subject and the direction need to be specified when expressing an order. ...
Definition: Order.php:28
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static _lookupContainsDeactivatedElements(int $a_id, string $a_parent_type, string $a_lang="-")
lookup whether page contains deactivated elements
global $DIC
Definition: shib_login.php:22
count(array $filter=[], array $parameters=[])
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
__construct(protected \ilLMTree $lm_tree, protected $type="", protected $current_node=0, protected $transl="")
$lm_set
A simple class to express a naive range of whole positive numbers.
Definition: Range.php:28