36 $this->
http = $DIC->http();
41 $ref_id = $this->
http->wrapper()->query()->retrieve(
'ref_id', $this->
refinery->kindlyTo()->int());
44 $viewdef->setId($tableview_id);
46 $viewdef->setActive(
false);
53 $this->table_gui = $table;
54 $this->tpl->setContent($table->getHTML());
60 $ilLocator = $DIC[
'ilLocator'];
63 $next_class = $this->
ctrl->getNextClass($this);
67 $this->
ctrl->setParameter($this,
"dclv", $viewdef->getId());
68 $title =
$lng->
txt(
"dcl_view_viewdefinition");
71 switch ($next_class) {
72 case "ilpageobjectgui":
73 throw new ilCOPageException(
"Deprecated. ilDclDetailedViewDefinitionGUI gui forwarding to ilpageobject");
77 $ilLocator->addItem($title, $this->
ctrl->getLinkTarget($this,
"preview"));
80 return parent::executeCommand();
87 $page->setActive(
true);
89 $this->
ctrl->redirect($this,
'edit');
95 $page->setActive(
false);
97 $this->
ctrl->redirect($this,
'edit');
103 $ilCtrl = $DIC[
'ilCtrl'];
108 $conf->setFormAction($ilCtrl->getFormAction($this));
109 $conf->setHeaderText(
$lng->
txt(
'dcl_confirm_delete_detailed_view_title'));
111 $conf->addItem(
'tableview', $this->tableview_id,
$lng->
txt(
'dcl_confirm_delete_detailed_view_text'));
113 $conf->setConfirm(
$lng->
txt(
'delete'),
'deleteView');
114 $conf->setCancel(
$lng->
txt(
'cancel'),
'cancelDelete');
122 $ilCtrl = $DIC[
'ilCtrl'];
124 $ilCtrl->redirect($this,
"edit");
130 $ilCtrl = $DIC[
'ilCtrl'];
135 $pageObject->delete();
138 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"dcl_empty_detailed_view_success"),
true);
141 $ilCtrl->redirectByClass(
"ilDclTableViewEditGUI",
"editGeneralSettings");
171 foreach ($allp as $item) {
172 $a_output = str_replace($item,
"<span style=\"color:green\">" . $item .
"</span>", $a_output);
183 public function saveTable():
void 188 foreach ($this->tableview->getFieldSettings() as $setting) {
189 if (!$setting->getFieldObject()->isStandardField() || $setting->getFieldObject()->getId() ===
'owner') {
192 foreach (array(
"RadioGroup") as $attribute) {
193 $selection_key = $attribute .
'_' . $setting->getField();
194 $selection = $this->
http->wrapper()->post()->retrieve(
196 $this->
refinery->kindlyTo()->string()
198 $selected_radio_attribute = explode(
"_", $selection)[0];
200 foreach (array(
"LockedEdit",
"RequiredEdit",
"VisibleEdit",
"NotVisibleEdit") as $radio_attribute) {
203 if ($selected_radio_attribute === $radio_attribute) {
207 $setting->{
'set' . $radio_attribute}($result);
212 foreach (array(
"DefaultValue") as $attribute) {
213 $key = $attribute .
'_' . $setting->getField();
214 if ($this->
http->wrapper()->post()->has(
$key)) {
215 $attribute_value = $this->
http->wrapper()->post()->retrieve(
217 $this->
refinery->kindlyTo()->string()
220 $attribute_value =
"";
223 $setting->{
'set' . $attribute}($attribute_value);
232 if (!is_null($view)) {
233 $view->setStepE(
true);
237 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'dcl_msg_tableview_updated'),
true);
238 $this->
ctrl->saveParameter($this,
'tableview_id');
239 $this->
ctrl->redirect($this,
'presentation');
ILIAS HTTP Services $http
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...
ILIAS Refinery Factory $refinery
ilDclTableView $tableview
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static findOrGetInstance($primary_key, array $add_constructor_args=array())
static http()
Fetches the global http state from ILIAS.
setContent(string $a_html)
Sets content for standard template.
__construct(int $tableview_id)
static _exists(string $a_parent_type, int $a_id, string $a_lang="", bool $a_no_cache=false)
Checks whether page exists.
ilGlobalTemplateInterface $tpl
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupObjectId(int $ref_id)
setPresentationTitle(string $a_title="")
ilDclEditViewTableGUI $table_gui
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
postOutputProcessing(string $a_output)
Finalizing output processing.
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...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...