36 string $a_plugin_name =
"",
41 $this->
ctrl = $DIC->ctrl();
42 $this->component_repository = $DIC[
"component.repository"];
43 $this->component_factory = $DIC[
"component.factory"];
44 $this->
tabs = $DIC->tabs();
45 $this->
lng = $DIC->language();
46 $this->tpl = $DIC[
"tpl"];
54 $this->pluginname = $a_pluginname;
73 $ilTabs->setBackTarget(
$lng->
txt(
"pg"), $ilCtrl->getLinkTarget($this,
"returnToParent"));
76 $next_class = $this->
ctrl->getNextClass($this);
80 $plugins = $this->component_repository->getPluginSlotById(
"pgcp")->getActivePlugins();
81 foreach ($plugins as $pl) {
82 $pl_name = $pl->getName();
83 if ($next_class == strtolower(
"il" . $pl_name .
"plugingui")) {
84 $plugin = $this->component_factory->getPlugin($pl->getId());
86 $this->current_plugin =
$plugin;
88 $gui_obj =
$plugin->getUIClassInstance();
89 $gui_obj->setPCGUI($this);
90 $ret = $this->
ctrl->forwardCommand($gui_obj);
95 $cmd = $this->
ctrl->getCmd();
97 if ($next_class ==
"" || $next_class ==
"ilpcpluggedgui") {
109 public function edit(
bool $a_insert =
false): void
121 $plugin_name = $this->content_obj->getPluginName();
123 $plugin = $this->component_repository->getPluginByName($plugin_name);
125 $plugin_obj = $this->component_factory->getPlugin(
$plugin->getId());
126 $plugin_obj->setPageObj($this->
getPage());
127 $gui_obj = $plugin_obj->getUIClassInstance();
128 $gui_obj->setPCGUI($this);
134 $html = $ilCtrl->getHTML($gui_obj);
145 $this->content_obj->create(
149 $this->current_plugin->getPluginName(),
150 $this->current_plugin->getVersion()
152 $this->content_obj->setProperties($a_properties);
153 $this->updated = $this->pg_obj->update();
154 if ($this->updated ===
true) {
162 $this->content_obj->setProperties($a_properties);
163 $this->content_obj->setPluginVersion($this->current_plugin->getVersion());
164 $this->updated = $this->pg_obj->update();
165 if ($this->updated ===
true) {
173 $this->
ctrl->returnToParent($this,
"jump" . $this->hier_id);
Readable part of repository interface to ilComponentDataDB.
createElement(array $a_properties)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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...
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...
setContent(string $a_html)
Sets content for standard template.
setPluginName(string $a_pluginname)
Content object of ilPageObject (see ILIAS DTD).
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
updateElement(array $a_properties)
User Interface for Editing of Page Content Objects (Paragraphs, Tables, ...)
ilPageComponentPlugin $current_plugin
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
ilComponentRepository $component_repository
ilGlobalTemplateInterface $tpl
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(ilPageObject $a_pg_obj, ?ilPageContent $a_content_obj, string $a_hier_id, string $a_plugin_name="", string $a_pc_id="")
__construct(Container $dic, ilPlugin $plugin)
ilComponentFactory $component_factory
edit(bool $a_insert=false)