31 public function init(): void
35 $this->
access = $DIC->access();
36 $this->
ctrl = $DIC->ctrl();
37 $this->
lng = $DIC->language();
43 parent::setNode($a_node);
54 $this->sec_node = $this->dom->create_element(
"Section");
55 $this->sec_node = $this->node->append_child($this->sec_node);
56 $this->sec_node->set_attribute(
"Characteristic",
"Block");
61 if (!empty($a_char)) {
62 $this->sec_node->set_attribute(
"Characteristic", $a_char);
64 if ($this->sec_node->has_attribute(
"Characteristic")) {
65 $this->sec_node->remove_attribute(
"Characteristic");
72 if (is_object($this->sec_node)) {
73 $char = $this->sec_node->get_attribute(
"Characteristic");
74 if (substr($char, 0, 4) ==
"ilc_") {
75 $char = substr($char, 4);
84 return array(
"ed_insert_section");
96 self::saveTimings($a_page);
105 bool $a_abstract_only =
false 107 $a_output = self::insertTimings($a_output);
115 if ($a_unix_ts > 0) {
116 $this->sec_node->set_attribute(
"ActiveFrom", $a_unix_ts);
118 if ($this->sec_node->has_attribute(
"ActiveFrom")) {
119 $this->sec_node->remove_attribute(
"ActiveFrom");
129 if (is_object($this->sec_node)) {
130 return (
int) $this->sec_node->get_attribute(
"ActiveFrom");
140 if ($a_unix_ts > 0) {
141 $this->sec_node->set_attribute(
"ActiveTo", $a_unix_ts);
143 if ($this->sec_node->has_attribute(
"ActiveTo")) {
144 $this->sec_node->remove_attribute(
"ActiveTo");
151 if (is_object($this->sec_node)) {
152 return (
int) $this->sec_node->get_attribute(
"ActiveTo");
161 if (!empty($a_val)) {
162 $this->sec_node->set_attribute($a_attr, $a_val);
164 if ($this->sec_node->has_attribute($a_attr)) {
165 $this->sec_node->remove_attribute($a_attr);
172 if (is_object($this->sec_node)) {
173 return $this->sec_node->get_attribute($a_attr);
194 $this->
setAttribute(
"PermissionRefId",
"il__ref_" . $a_ref_id);
220 if (trim($a_href) !=
"") {
239 string $a_target_frame
242 $attributes = array(
"Type" => $a_type,
"Target" => $a_target,
243 "TargetFrame" => $a_target_frame);
256 $childs = $this->sec_node->child_nodes();
257 foreach ($childs as $child) {
258 if ($child->node_name() ==
"ExtLink") {
259 return array(
"LinkType" =>
"ExtLink",
260 "Href" => $child->get_attribute(
"Href"));
262 if ($child->node_name() ==
"IntLink") {
263 return array(
"LinkType" =>
"IntLink",
264 "Target" => $child->get_attribute(
"Target"),
265 "Type" => $child->get_attribute(
"Type"),
266 "TargetFrame" => $child->get_attribute(
"TargetFrame"));
269 return array(
"LinkType" =>
"NoLink");
279 while (($start = strpos($a_html,
"{{{{{Section;Access;")) > 0) {
280 $end = strpos($a_html,
"}}}}}", $start);
281 $access_attr = explode(
";", substr($a_html, $start, $end - $start));
282 $id = explode(
"_", $access_attr[3]);
283 $section_nr = $access_attr[6];
286 if ($access_attr[5] ==
"no_read") {
295 $end_limiter =
"{{{{{Section;AccessEnd;" . $section_nr .
"}}}}}";
297 $a_html = substr($a_html, 0, $start) . substr($a_html, $end + 5);
298 $a_html = str_replace($end_limiter,
"", $a_html);
300 $end = strpos($a_html, $end_limiter, $start);
301 $a_html = substr($a_html, 0, $start) . substr($a_html, $end + strlen($end_limiter));
305 $a_html = str_replace(
"{{{{{Section;Access}}}}}",
"", $a_html);
314 $ilDB = $DIC->database();
317 "DELETE FROM copg_section_timings WHERE " .
318 " page_id = " .
$ilDB->quote($a_page->
getId(),
"integer") .
330 for (
$i = 0;
$i < count(
$res->nodeset);
$i++) {
331 $from =
$res->nodeset[
$i]->get_attribute(
"ActiveFrom");
334 "copg_section_timings",
336 "page_id" => array(
"integer", $a_page->
getId()),
338 "unix_ts" => array(
"integer", $from)
343 $to =
$res->nodeset[
$i]->get_attribute(
"ActiveTo");
346 "copg_section_timings",
348 "page_id" => array(
"integer", $a_page->
getId()),
350 "unix_ts" => array(
"integer", $to)
368 $ilDB = $DIC->database();
371 "SELECT * FROM copg_section_timings " .
372 " WHERE page_id = " .
$ilDB->quote($a_page->
getId(),
"integer") .
378 while ($rec =
$ilDB->fetchAssoc($set)) {
379 $unix_ts = $rec[
"unix_ts"];
380 if ($unix_ts < $current_ts) {
383 $str .=
"-" . $unix_ts;
399 $start = strpos($a_html,
"{{{{{Section;ActiveFrom");
400 if (is_int($start)) {
401 $end = strpos($a_html,
"}}}}}", $start);
405 $param = substr($a_html, $start + 13, $end - $start - 13);
420 $h2 = substr($a_html, 0, $start) .
422 substr($a_html, $end + 5);
426 $start = strpos($a_html,
"{{{{{Section;ActiveFrom;", $start + 5);
428 if (is_int($start)) {
429 $end = strpos($a_html,
"}}}}}", $start);
437 if (is_object($this->sec_node)) {
438 return ($this->sec_node->get_attribute(
"Protected") ==
"1");
447 $this->sec_node->set_attribute(
"Protected",
"1");
449 $this->sec_node->set_attribute(
"Protected",
"0");
455 if ($this->sec_node->node_name() !=
"Section") {
xpath_eval(php4DOMXPath $xpath_context, string $eval_str, $contextnode=null)
setType(string $a_type)
Set Type.
static setFirstOptionalElement(php4DOMDocument $doc, php4DOMElement $parent_node, string $a_node_name, array $a_successors, string $a_content, array $a_attributes, bool $a_remove_childs=true)
searches for an element $a_node_name within the childs of $parent_node if no node is found...
getActiveFrom()
Get activation from.
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
insertTimings(string $a_html)
Insert timings (in edit mode)
static deleteAllChildsByName(php4DOMElement $a_parent, array $a_node_names)
delete all childs of a node by names in $a_node_names
setNode(php4DOMElement $a_node)
checkAccess(string $a_permission, string $a_cmd, int $a_ref_id, string $a_type="", ?int $a_obj_id=null, ?int $a_tree_id=null)
check access for an object (provide $a_type and $a_obj_id if available for better performance) ...
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false)
static afterPageUpdate(ilPageObject $a_page, DOMDocument $a_domdoc, string $a_xml, bool $a_creation)
After page has been updated (or created)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static saveTimings(ilPageObject $a_page)
xpath_new_context($dom_document)
create(ilPageObject $a_pg_obj, string $a_hier_id, string $a_pc_id="")
getXMLFromDom(bool $a_incl_head=false, bool $a_append_mobs=false, bool $a_append_bib=false, string $a_append_str="", bool $a_omit_pageobject_tag=false, int $style_id=0)
get xml content of page from dom (use this, if any changes are made to the document) ...
setCharacteristic(string $a_char)
modifyPageContentPostXsl(string $a_output, string $a_mode, bool $a_abstract_only=false)
domxml_open_mem($str, $mode=0, &$error=null)
getAttribute(string $a_attr)
insertContent(ilPageContent $a_cont_obj, string $a_pos, int $a_mode=IL_INSERT_AFTER, string $a_pcid="", bool $remove_placeholder=true)
insert a content node before/after a sibling or as first child of a parent
setActiveFrom(int $a_unix_ts)
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
handleAccess(string $a_html, string $a_mode)
setIntLink(string $a_type, string $a_target, string $a_target_frame)
Set link of area to an internal one.
createPageContentNode(bool $a_set_this_node=true)
Create page content node (always use this method first when adding a new element) ...
setPermissionRefId(int $a_ref_id)
setActiveTo(int $a_unix_ts)
Set activation to.
setExtLink(string $a_href)
Set link of area to an external one.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
setAttribute(string $a_attr, string $a_val)
static setUseRelativeDates(bool $a_status)
set use relative dates
static getCacheTriggerString(ilPageObject $a_page)
Get page cache update trigger string.
setPermission(string $a_val)
Set permission.