31 protected \ILIAS\COPage\InternalDomainService
$domain;
62 $this->domain = $DIC->copage()->internal()->domain();
65 die(
"Error: ilPageContent::init() did not set type");
67 $this->page_manager = $page_manager ?? $DIC->copage()
71 $this->
object = $object_adapter ?? $DIC->copage()
75 $this->dom_util = $DIC->copage()->internal()->domain()->domUtil();
85 $this->pg_obj = $a_val;
97 abstract public function init(): void;
103 final protected function setType(
string $a_type): void
105 $this->type = $a_type;
125 $this->dom_node = $node;
150 $this->hier_id = $a_hier_id;
161 return $this->
getDomNode()->getAttribute(
"HierId");
166 return is_object($this->dom_node);
172 return $this->
getDomNode()->getAttribute(
"HierId");
179 $this->pcid = $a_pcid;
189 $this->file_download_link = $a_download_link;
199 $this->profile_back_url =
$url;
209 $this->fullscreen_link = $a_fullscreen_link;
219 $this->sourcecode_download_script = $script_name;
230 return $this->
getDomNode()->getAttribute(
"PCID");
238 $this->
getDomNode()->setAttribute(
"PCID", $a_pc_id);
247 uasort($a_array, array(
"ilPageContent",
"isGreaterHierId"));
256 $a_arr = explode(
"_", $a);
257 $b_arr = explode(
"_", $b);
258 for ($i = 0; $i < count($a_arr); $i++) {
259 if ((
int) $a_arr[$i] > (
int) $b_arr[$i]) {
261 } elseif ((
int) $a_arr[$i] < (
int) $b_arr[$i]) {
275 $this->
getDomNode()->setAttribute(
"Enabled", $value);
292 $compare = $this->
getDomNode()->getAttribute(
"Enabled");
297 return strcasecmp($compare,
"true") == 0;
305 $node = $this->dom_doc->createElement(
"PageContent");
306 if ($a_set_this_node) {
314 return $this->dom_doc->createElement(
"PageContent");
321 array $child_attributes = []
324 $node = $this->dom_doc->createElement($child);
325 $node = $this->
getDomNode()->appendChild($node);
326 foreach ($child_attributes as $att => $value) {
327 $node->setAttribute($att, $value);
352 bool $a_self_ass =
true,
353 bool $a_clone_mobs =
false,
354 int $new_parent_id = 0,
365 bool $a_abstract_only =
false 423 int $delete_lower_than_nr
static afterRepositoryCopy(ilPageObject $page, array $mapping, int $source_ref_id)
After repository (container) copy action.
getSourcecodeDownloadScript()
static beforePageDelete(ilPageObject $a_page)
Before page is being deleted.
setType(string $a_type)
Set Type.
static getLogger(string $a_component_id)
Get component logger.
setFullscreenLink(string $a_fullscreen_link)
getCssFiles(string $a_mode)
getModel()
Get model as needed for the front-end editor.
PageManagerInterface $page_manager
static deleteHistoryLowerEqualThan(string $parent_type, int $page_id, string $lang, int $delete_lower_than_nr)
Overwrite in derived classes, if old history entries are being deleted.
static getLangVars()
Get lang vars needed for editing.
setPage(ilPageObject $a_val)
static isGreaterHierId(string $a, string $b)
Check whether Hier ID $a is greater than Hier ID $b.
getOnloadCode(string $a_mode)
getDomDoc()
Get dom doc (DOMDocument)
setFileDownloadLink(string $a_download_link)
Content object of ilPageObject (see ILIAS DTD).
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static afterPageUpdate(ilPageObject $a_page, DOMDocument $a_domdoc, string $a_xml, bool $a_creation)
After page has been updated (or created)
string $file_download_link
setDomNode(DOMNode $node)
string $sourcecode_download_script
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
static sortHierIds(array $a_array)
Sort an array of Hier IDS in ascending order.
ObjectAdapterInterface $object
static handleCopiedContent(DOMDocument $a_domdoc, bool $a_self_ass=true, bool $a_clone_mobs=false, int $new_parent_id=0, int $obj_copy_id=0)
Handle copied content.
ILIAS COPage InternalDomainService $domain
createPageContentNode(bool $a_set_this_node=true)
Create page content node (always use this method first when adding a new element) ...
modifyPageContentPostXsl(string $a_output, string $a_mode, bool $a_abstract_only=false)
Modify page content after xsl.
getJavascriptFiles(string $a_mode)
setSourcecodeDownloadScript(string $script_name)
setProfileBackUrl(string $url)
setHierId(string $a_hier_id)
static afterPageHistoryEntry(ilPageObject $a_page, DOMDocument $a_old_domdoc, string $a_old_xml, int $a_old_nr)
After page history entry has been created.
__construct(ilPageObject $a_pg_obj, ?PageManagerInterface $page_manager=null, ?ObjectAdapterInterface $object_adapter=null)
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
ILIAS COPage Dom DomUtil $dom_util
setEnabled(string $value)
Set Enabled value for page content component.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
writePCId(string $a_pc_id)
createInitialChildNode(string $hier_id, string $pc_id, string $child, array $child_attributes=[])