ILIAS  trunk Revision v11.0_alpha-2638-g80c1d007f79
ilPCResources Class Reference

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V. More...

+ Inheritance diagram for ilPCResources:
+ Collaboration diagram for ilPCResources:

Public Member Functions

 init ()
 
 create (ilPageObject $a_pg_obj, string $a_hier_id, string $a_pc_id="")
 
 setResourceListType (string $a_type)
 
 setItemGroupRefId (int $a_ref_id)
 
 getResourceListType ()
 Get Resource List Type. More...
 
 getItemGroupRefId ()
 Get item group ref id. More...
 
 getMainType ()
 
- Public Member Functions inherited from ilPageContent
 __construct (ilPageObject $a_pg_obj, ?PageManagerInterface $page_manager=null, ?ObjectAdapterInterface $object_adapter=null)
 
 setPage (ilPageObject $a_val)
 
 getPage ()
 
 init ()
 Init object. More...
 
 getType ()
 
 getDomNode ()
 
 getDomDoc ()
 
 setDomNode (DOMNode $node)
 
 getChildNode ()
 
 getJavascriptFiles (string $a_mode)
 
 getCssFiles (string $a_mode)
 
 getOnloadCode (string $a_mode)
 
 setHierId (string $a_hier_id)
 
 getHierId ()
 
 lookupHierId ()
 
 readHierId ()
 
 setPcId (string $a_pcid)
 
 getPCId ()
 
 setFileDownloadLink (string $a_download_link)
 
 getFileDownloadLink ()
 
 setProfileBackUrl (string $url)
 
 getProfileBackUrl ()
 
 setFullscreenLink (string $a_fullscreen_link)
 
 getFullscreenLink ()
 
 setSourcecodeDownloadScript (string $script_name)
 
 getSourcecodeDownloadScript ()
 
 readPCId ()
 
 writePCId (string $a_pc_id)
 
 setEnabled (string $value)
 Set Enabled value for page content component. More...
 
 enable ()
 
 disable ()
 
 isEnabled ()
 
 createPageContentNode (bool $a_set_this_node=true)
 Create page content node (always use this method first when adding a new element) More...
 
 getNewPageContentNode ()
 
 modifyPageContentPostXsl (string $a_output, string $a_mode, bool $a_abstract_only=false)
 Modify page content after xsl. More...
 
 getModel ()
 Get model as needed for the front-end editor. More...
 

Static Public Member Functions

static modifyItemGroupRefIdsByMapping (ilPageObject $a_page, array $mappings)
 
static getLangVars ()
 
static resolveResources (ilPageObject $page, array $ref_mappings)
 
- Static Public Member Functions inherited from ilPageContent
static sortHierIds (array $a_array)
 Sort an array of Hier IDS in ascending order. More...
 
static isGreaterHierId (string $a, string $b)
 Check whether Hier ID $a is greater than Hier ID $b. More...
 
static getLangVars ()
 Get lang vars needed for editing. More...
 
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. More...
 
static afterPageUpdate (ilPageObject $a_page, DOMDocument $a_domdoc, string $a_xml, bool $a_creation)
 After page has been updated (or created) More...
 
static beforePageDelete (ilPageObject $a_page)
 Before page is being deleted. More...
 
static afterRepositoryCopy (ilPageObject $page, array $mapping, int $source_ref_id)
 After repository (container) copy action. More...
 
static afterPageHistoryEntry (ilPageObject $a_page, DOMDocument $a_old_domdoc, string $a_old_xml, int $a_old_nr)
 After page history entry has been created. More...
 
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. More...
 

Additional Inherited Members

- Data Fields inherited from ilPageContent
string $hier_id = ""
 
DOMNode $dom_node = null
 
string $page_lang = ""
 
- Protected Member Functions inherited from ilPageContent
 getPageManager ()
 
 setType (string $a_type)
 Set Type. More...
 
 hasNode ()
 
 createInitialChildNode (string $hier_id, string $pc_id, string $child, array $child_attributes=[])
 
- Protected Attributes inherited from ilPageContent
DOMDocument $dom_doc
 
ILIAS COPage InternalDomainService $domain
 
string $pcid
 
string $type = ""
 
ilPageObject $pg_obj
 
string $file_download_link = ''
 
string $fullscreen_link = ''
 
string $sourcecode_download_script = ''
 
ilLogger $log
 
string $profile_back_url = ""
 
ILIAS COPage Dom DomUtil $dom_util
 
PageManagerInterface $page_manager = null
 
ObjectAdapterInterface $object = null
 

Detailed Description

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V.

ILIAS is licensed with the GPL-3.0, see https://www.gnu.org/licenses/gpl-3.0.en.html You should have received a copy of said license along with the source code, too.

If this is not the case or you just want to try ILIAS, you'll find us at: https://www.ilias.de https://github.com/ILIAS-eLearning Resources content object (see ILIAS DTD). Inserts Repository Resources of a Container Object,

Author
Alexander Killing killi.nosp@m.ng@l.nosp@m.eifos.nosp@m..de

Definition at line 25 of file class.ilPCResources.php.

Member Function Documentation

◆ create()

ilPCResources::create ( ilPageObject  $a_pg_obj,
string  $a_hier_id,
string  $a_pc_id = "" 
)

Definition at line 32 of file class.ilPCResources.php.

References ilPageContent\createInitialChildNode().

36  : void {
37  $this->createInitialChildNode($a_hier_id, $a_pc_id, "Resources");
38  }
createInitialChildNode(string $hier_id, string $pc_id, string $child, array $child_attributes=[])
+ Here is the call graph for this function:

◆ getItemGroupRefId()

ilPCResources::getItemGroupRefId ( )

Get item group ref id.

Definition at line 77 of file class.ilPCResources.php.

References $c, ilPageContent\getChildNode(), and null.

77  : ?int
78  {
79  if (is_object($this->getChildNode())) {
80  $c = $this->getChildNode()->childNodes->item(0);
81  if (is_object($c) && $c->nodeName == "ItemGroup") {
82  return (int) $c->getAttribute("RefId");
83  }
84  }
85  return null;
86  }
$c
Definition: deliver.php:25
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
+ Here is the call graph for this function:

◆ getLangVars()

static ilPCResources::getLangVars ( )
static

Definition at line 122 of file class.ilPCResources.php.

122  : array
123  {
124  return array("pc_res");
125  }

◆ getMainType()

ilPCResources::getMainType ( )

Definition at line 88 of file class.ilPCResources.php.

References $c, ilPageContent\getChildNode(), and null.

88  : ?string
89  {
90  if (is_object($this->getChildNode())) {
91  $c = $this->getChildNode()->childNodes->item(0);
92  if (is_object($c)) {
93  return (string) $c->nodeName;
94  }
95  }
96  return null;
97  }
$c
Definition: deliver.php:25
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
+ Here is the call graph for this function:

◆ getResourceListType()

ilPCResources::getResourceListType ( )

Get Resource List Type.

Definition at line 63 of file class.ilPCResources.php.

References $c, ilPageContent\getChildNode(), and null.

63  : ?string
64  {
65  if (is_object($this->getChildNode())) {
66  $c = $this->getChildNode()->childNodes->item(0);
67  if (is_object($c) && $c->nodeName == "ResourceList") {
68  return $c->getAttribute("Type");
69  }
70  }
71  return null;
72  }
$c
Definition: deliver.php:25
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
+ Here is the call graph for this function:

◆ init()

ilPCResources::init ( )

Definition at line 27 of file class.ilPCResources.php.

References ilPageContent\setType().

27  : void
28  {
29  $this->setType("repobj");
30  }
setType(string $a_type)
Set Type.
+ Here is the call graph for this function:

◆ modifyItemGroupRefIdsByMapping()

static ilPCResources::modifyItemGroupRefIdsByMapping ( ilPageObject  $a_page,
array  $mappings 
)
static

Definition at line 99 of file class.ilPCResources.php.

References ilPageContent\$log, $ref_id, ilLogger\debug(), ilPageObject\getDomDoc(), and ilLoggerFactory\getLogger().

Referenced by ilObjItemGroup\fixContainerItemGroupRefsAfterCloning().

102  : bool {
103  $dom = $a_page->getDomDoc();
105 
106  $changed = false;
107  $xpath_temp = new DOMXPath($dom);
108  $igs = $xpath_temp->query("//Resources/ItemGroup");
109 
110  foreach ($igs as $ig_node) {
111  $ref_id = $ig_node->getAttribute("RefId");
112  $log->debug(">>> Fix Item Group with import Ref Id:" . $ref_id);
113  $log->debug("Ref Id Mapping:" . print_r($mappings, true));
114  if (($mappings[$ref_id] ?? 0) > 0) {
115  $ig_node->setAttribute("RefId", $mappings[$ref_id]);
116  $changed = true;
117  }
118  }
119  return $changed;
120  }
static getLogger(string $a_component_id)
Get component logger.
getDomDoc()
Get dom doc (DOMDocument)
$ref_id
Definition: ltiauth.php:65
debug(string $message, array $context=[])
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ resolveResources()

static ilPCResources::resolveResources ( ilPageObject  $page,
array  $ref_mappings 
)
static

Definition at line 127 of file class.ilPCResources.php.

Referenced by ilPageObject\resolveResources().

130  : bool {
131  return self::modifyItemGroupRefIdsByMapping($page, $ref_mappings);
132  }
+ Here is the caller graph for this function:

◆ setItemGroupRefId()

ilPCResources::setItemGroupRefId ( int  $a_ref_id)

Definition at line 50 of file class.ilPCResources.php.

References ilPageContent\getChildNode().

50  : void
51  {
52  if (!empty($a_ref_id)) {
53  $this->dom_util->deleteAllChilds($this->getChildNode());
54  $list_node = $this->dom_doc->createElement("ItemGroup");
55  $list_node = $this->getChildNode()->appendChild($list_node);
56  $list_node->setAttribute("RefId", $a_ref_id);
57  }
58  }
+ Here is the call graph for this function:

◆ setResourceListType()

ilPCResources::setResourceListType ( string  $a_type)

Definition at line 40 of file class.ilPCResources.php.

References ilPageContent\getChildNode().

40  : void
41  {
42  if (!empty($a_type)) {
43  $this->dom_util->deleteAllChilds($this->getChildNode());
44  $list_node = $this->dom_doc->createElement("ResourceList");
45  $list_node = $this->getChildNode()->appendChild($list_node);
46  $list_node->setAttribute("Type", $a_type);
47  }
48  }
+ Here is the call graph for this function:

The documentation for this class was generated from the following file: