32 protected \ILIAS\DI\UIServices
$ui;
43 $this->
ctrl = $DIC->ctrl();
44 $this->
ui = $DIC->ui();
45 $this->http_request = $DIC->http()->request();
46 $this->port_request = $DIC->portfolio()
52 $this->
lng->loadLanguageModule(
"prtt");
53 $this->
lng->loadLanguageModule(
"prtf");
59 $next_class = $this->
ctrl->getNextClass($this);
62 $cmd = $this->
ctrl->getCmd();
64 switch ($next_class) {
65 case "ilpropertyformgui":
67 $this->
ctrl->forwardCommand($form);
78 return ($this->
getPage()->getParentType() ===
"prtt");
93 public function edit(): void
122 $selected = $this->content_obj->getRecordIds();
126 foreach ($recs as
$r) {
127 $val = (in_array($r->getRecordId(), $selected));
128 $fields[
"rec" . $r->getRecordId()] =
129 $f->input()->field()->checkbox($r->getTitle(), $r->getDescription())
134 $section1 =
$f->input()->field()->section($fields, $this->
lng->txt(
"prtt_select_datasets"));
141 return $f->input()->container()->form()->standard($form_action, [
"sec" => $section1]);
151 if (
$request->getMethod() ===
"POST") {
152 $form = $form->withRequest(
$request);
153 $data = $form->getData();
154 if (is_null(
$data)) {
158 if (is_array(
$data[
"sec"])) {
160 $this->content_obj->create($this->pg_obj, $this->hier_id, $this->pc_id);
162 $this->updated = $this->pg_obj->update();
163 if (!$this->updated) {
167 $this->tpl->setOnScreenMessage(
'info',
$lng->
txt(
"msg_obj_modified"),
true);
170 $this->
ctrl->returnToParent($this,
"jump" . $this->hier_id);
175 $data = $form->getData();
177 if (!is_null(
$data) && is_array(
$data[
"sec"])) {
180 foreach ($recs as
$r) {
181 $rec_id =
$data[
"sec"][
"rec" . $r->getRecordId()];
182 if (isset($rec_id) && $rec_id) {
183 $ids[] = $r->getRecordId();
211 if (
$request->getMethod() ===
"POST") {
212 $form = $form->withRequest(
$request);
213 $data = $form->getData();
214 if (is_null(
$data)) {
218 if (is_array(
$data[
"sec"])) {
220 $this->updated = $this->pg_obj->update();
221 if (!$this->updated) {
225 $this->tpl->setOnScreenMessage(
'info',
$lng->
txt(
"msg_obj_modified"),
true);
228 $this->
ctrl->returnToParent($this,
"jump" . $this->hier_id);
255 $page =
new ilPortfolioPage($this->port_request->getPortfolioPageId());
257 $content_obj = $page->getContentObjectForPcId($this->request->getPCId());
268 foreach ($recs as
$r) {
269 $val = (in_array($r->getRecordId(), $selected));
275 $form->setTitle(
$lng->
txt(
"prtf_edit_data"));
280 $this->
getPage()->getPortfolioId(),
285 $this->record_gui->setRecordFilter($selected);
286 $this->record_gui->setPropertyForm($form);
287 $this->record_gui->parse();
289 $form->addCommandButton(
"updateAdvancedMetaData",
$lng->
txt(
"save"));
290 $form->addCommandButton(
"cancel",
$lng->
txt(
"cancel"));
303 if (!$this->record_gui->importEditFormPostValues()) {
308 if ($this->record_gui->writeEditForm()) {
309 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"settings_saved"),
true);
311 $this->
ctrl->returnToParent($this,
"jump" . $this->hier_id);
getFormAction(object $a_gui_obj, ?string $a_fallback_cmd=null, ?string $a_anchor=null, bool $is_async=false, bool $has_xml_style=false)
ilPageContent $content_obj
buildDom(bool $a_force=false)
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...
getLinkTarget(object $a_gui_obj, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false, bool $has_xml_style=false)
setContent(string $a_html)
Sets content for standard template.
static _getSelectedRecordsByObject(string $a_obj_type, int $a_id, string $a_sub_type="", bool $is_ref_id=true)
Content object of ilPageObject (see ILIAS DTD).
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
User Interface for Editing of Page Content Objects (Paragraphs, Tables, ...)
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
ilGlobalTemplateInterface $tpl
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
__construct(Container $dic, ilPlugin $plugin)