32 public function init(): void
36 $this->
lng = $DIC->language();
38 $this->component_repository = $DIC[
"component.repository"];
39 $this->component_factory = $DIC[
"component.factory"];
44 parent::setNode($a_node);
55 string $a_plugin_name,
56 string $a_plugin_version
60 $this->plug_node = $this->dom->create_element(
"Plugged");
61 $this->plug_node = $this->node->append_child($this->plug_node);
62 $this->plug_node->set_attribute(
"PluginName", $a_plugin_name);
63 $this->plug_node->set_attribute(
"PluginVersion", $a_plugin_version);
71 if (!is_object($this->plug_node)) {
76 $children = $this->plug_node->child_nodes();
77 for (
$i = 0;
$i < count($children);
$i++) {
78 $this->plug_node->remove_child($children[
$i]);
81 foreach ($a_properties as
$key => $value) {
82 $prop_node = $this->dom->create_element(
"PluggedProperty");
83 $prop_node = $this->plug_node->append_child($prop_node);
84 $prop_node->set_attribute(
"Name",
$key);
86 $prop_node->set_content($value);
96 $properties = array();
98 if (is_object($this->plug_node)) {
100 $children = $this->plug_node->child_nodes();
101 for (
$i = 0;
$i < count($children);
$i++) {
102 if ($children[
$i]->node_name() ==
"PluggedProperty") {
103 $properties[$children[
$i]->get_attribute(
"Name")] =
104 $children[
$i]->get_content();
114 if (!empty($a_version)) {
115 $this->plug_node->set_attribute(
"PluginVersion", $a_version);
117 if ($this->plug_node->has_attribute(
"PluginVersion")) {
118 $this->plug_node->remove_attribute(
"PluginVersion");
125 if (is_object($this->plug_node)) {
126 return $this->plug_node->get_attribute(
"PluginVersion");
133 if (!empty($a_name)) {
134 $this->plug_node->set_attribute(
"PluginName", $a_name);
136 if ($this->plug_node->has_attribute(
"PluginName")) {
137 $this->plug_node->remove_attribute(
"PluginName");
144 if (is_object($this->plug_node)) {
145 return $this->plug_node->get_attribute(
"PluginName");
154 public static function handleCopiedPluggedContent(
159 $component_repository = $DIC[
'component.repository'];
160 $component_factory = $DIC[
'component.factory'];
163 $nodes = $xpath->query(
"//Plugged");
166 foreach ($nodes as
$node) {
167 $plugin_name = $node->getAttribute(
'PluginName');
168 $plugin_version = $node->getAttribute(
'PluginVersion');
176 if (is_object($plugin_info) && $plugin_info->isActive()) {
178 $plugin_obj = $component_factory->
getPlugin($plugin_info->getId());
179 $plugin_obj->setPageObj($a_page);
181 $properties = array();
183 foreach ($node->childNodes as $child) {
184 $properties[$child->getAttribute(
'Name')] = $child->nodeValue;
189 $plugin_obj->onClone($properties, $plugin_version);
191 foreach ($node->childNodes as $child) {
192 $node->removeChild($child);
194 foreach ($properties as
$name => $value) {
197 str_replace(
"&",
"&", $value)
199 $node->appendChild($child);
200 $child->setAttribute(
'Name',
$name);
215 $component_factory = $DIC[
"component.factory"];
218 $component_repository = $DIC[
"component.repository"];
220 $xpath =
new DOMXPath($page->getDomDoc());
221 $nodes = $xpath->query(
"//Plugged");
224 foreach ($nodes as
$node) {
225 $plugin_name = $node->getAttribute(
'PluginName');
226 $plugin_version = $node->getAttribute(
'PluginVersion');
233 if (!is_null($info) && $info->isActive()) {
235 $plugin_obj = $component_factory->
getPlugin($info->getId());
236 $plugin_obj->setPageObj($page);
238 $properties = array();
240 foreach ($node->childNodes as $child) {
241 $properties[$child->getAttribute(
'Name')] = $child->nodeValue;
246 $plugin_obj->afterRepositoryCopy($properties, $mapping, $source_ref_id, $plugin_version);
248 foreach ($node->childNodes as $child) {
249 $node->removeChild($child);
251 foreach ($properties as
$name => $value) {
254 str_replace(
"&",
"&", $value)
256 $node->appendChild($child);
257 $child->setAttribute(
'Name',
$name);
267 public static function handleDeletedPluggedNode(
270 bool $move_operation =
false 273 $component_repository = $DIC[
'component.repository'];
274 $component_factory = $DIC[
'component.factory'];
276 $plugin_name = $a_node->getAttribute(
'PluginName');
277 $plugin_version = $a_node->getAttribute(
'PluginVersion');
280 if ($plugin_info->isActive()) {
282 $plugin_obj = $component_factory->
getPlugin($plugin_info->getId());
283 $plugin_obj->setPageObj($a_page);
285 $properties = array();
287 foreach ($a_node->childNodes as $child) {
288 $properties[$child->getAttribute(
'Name')] = $child->nodeValue;
292 $plugin_obj->onDelete($properties, $plugin_version, $move_operation);
299 bool $a_abstract_only =
false 304 $start = strpos($a_output,
"{{{{{Plugged<pl");
306 if (is_int($start)) {
307 $end = strpos($a_output,
"}}}}}", $start);
311 $param = substr($a_output, $start + 5, $end - $start - 5);
312 $param = str_replace(
' xmlns:xhtml="http://www.w3.org/1999/xhtml"',
"",
$param);
316 $plugin_version =
$param[2];
317 $properties = array();
324 if ($a_mode ==
"edit") {
325 $plugin_html =
'<div class="ilBox">' . $lng->
txt(
"content_plugin_not_activated") .
" (" . $plugin_name .
")</div>";
328 $plugin_info = $this->component_repository->getPluginByName($plugin_name);
330 if ($plugin_info->isActive()) {
331 $plugin_obj = $this->component_factory->getPlugin($plugin_info->getId());
332 $plugin_obj->setPageObj($this->
getPage());
333 $gui_obj = $plugin_obj->getUIClassInstance();
334 $plugin_html = $gui_obj->getElementHTML($a_mode, $properties, $plugin_version);
336 if ($a_mode ===
"edit") {
337 $plugin_html = sprintf($this->
lng->txt(
"copg_plugin_not_avail"), $plugin_name);
343 $a_output = substr($a_output, 0, $start) .
345 substr($a_output, $end + 5);
347 if (strlen($a_output) > $start + 5) {
348 $start = strpos($a_output,
"{{{{{Plugged<pl", $start + 5);
353 if (is_int($start)) {
354 $end = strpos($a_output,
"}}}}}", $start);
365 foreach ($this->component_factory->getActivePluginsInSlot(
"pgcp") as
$plugin) {
367 $pl_dir =
$plugin->getDirectory();
369 $pl_js_files =
$plugin->getJavascriptFiles($a_mode);
370 foreach ($pl_js_files as $pl_js_file) {
371 if (!is_int(strpos($pl_js_file,
"//"))) {
372 $pl_js_file = $pl_dir .
"/" . $pl_js_file;
374 if (!in_array($pl_js_file, $js_files)) {
375 $js_files[] = $pl_js_file;
385 $css_files = array();
387 foreach ($this->component_factory->getActivePluginsInSlot(
"pgcp") as
$plugin) {
389 $pl_dir =
$plugin->getDirectory();
391 $pl_css_files =
$plugin->getCssFiles($a_mode);
392 foreach ($pl_css_files as $pl_css_file) {
393 if (!is_int(strpos($pl_css_file,
"//"))) {
394 $pl_css_file = $pl_dir .
"/" . $pl_css_file;
396 if (!in_array($pl_css_file, $css_files)) {
397 $css_files[] = $pl_css_file;
static afterRepositoryCopy(ilPageObject $page, array $mapping, int $source_ref_id)
After repository (container) copy action.
setType(string $a_type)
Set Type.
Readable part of repository interface to ilComponentDataDB.
php4DOMElement $plug_node
setProperties(array $a_properties)
Set properties of plugged component.
setNode(php4DOMElement $a_node)
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...
getProperties()
Get properties of plugged component.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getCssFiles(string $a_mode)
getPlugin(string $id)
Get the plugin for the given id.
getJavascriptFiles(string $a_mode)
setPluginVersion(string $a_version)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getPluginByName(string $name)
Get a plugin by name.
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
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
setPluginName(string $a_name)
modifyPageContentPostXsl(string $a_output, string $a_mode, bool $a_abstract_only=false)
createPageContentNode(bool $a_set_this_node=true)
Create page content node (always use this method first when adding a new element) ...
ilComponentRepository $component_repository
create(ilPageObject $a_pg_obj, string $a_hier_id, string $a_pc_id, string $a_plugin_name, string $a_plugin_version)
Create plugged node in xml.
ilComponentFactory $component_factory