35 $this->
ctrl = $DIC[
'ilCtrl'];
37 $this->
http = $DIC->http();
44 $ref_id = $this->
http->wrapper()->query()->retrieve(
'ref_id', $this->
refinery->kindlyTo()->int());
47 $viewdef->setId($tableview_id);
49 $viewdef->setActive(
false);
56 $this->table_gui = $table;
57 $this->tpl->setContent($table->getHTML());
63 $ilLocator = $DIC[
'ilLocator'];
66 $next_class = $this->
ctrl->getNextClass($this);
70 $this->
ctrl->setParameter($this,
"dclv", $viewdef->getId());
71 $title =
$lng->
txt(
"dcl_view_viewdefinition");
74 switch ($next_class) {
75 case "ilpageobjectgui":
76 throw new ilCOPageException(
"Deprecated. ilDclDetailedViewDefinitionGUI gui forwarding to ilpageobject");
80 $ilLocator->addItem($title, $this->
ctrl->getLinkTarget($this,
"preview"));
83 return parent::executeCommand();
90 $page->setActive(
true);
92 $this->
ctrl->redirect($this,
'edit');
98 $page->setActive(
false);
100 $this->
ctrl->redirect($this,
'edit');
106 $ilCtrl = $DIC[
'ilCtrl'];
111 $conf->setFormAction($ilCtrl->getFormAction($this));
112 $conf->setHeaderText(
$lng->
txt(
'dcl_confirm_delete_detailed_view_title'));
114 $conf->addItem(
'tableview', $this->tableview_id,
$lng->
txt(
'dcl_confirm_delete_detailed_view_text'));
116 $conf->setConfirm(
$lng->
txt(
'delete'),
'deleteView');
117 $conf->setCancel(
$lng->
txt(
'cancel'),
'cancelDelete');
125 $ilCtrl = $DIC[
'ilCtrl'];
127 $ilCtrl->redirect($this,
"edit");
133 $ilCtrl = $DIC[
'ilCtrl'];
138 $pageObject->delete();
141 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"dcl_empty_detailed_view_success"),
true);
144 $ilCtrl->redirectByClass(
"ilDclTableViewEditGUI",
"editGeneralSettings");
174 foreach ($allp as $item) {
175 $a_output = str_replace($item,
"<span style=\"color:green\">" . $item .
"</span>", $a_output);
186 public function saveTable():
void 189 $raw_values = $this->
http->request()->getParsedBody();
190 foreach ($raw_values as
$key => $value) {
191 if (strpos(
$key,
"default_") === 0) {
194 $data_type_id = intval(
$parts[2]);
199 if (!is_null($existing_values)) {
200 foreach ($existing_values as $existing_value) {
201 $existing_value->delete();
209 if (!ctype_digit($value)) {
210 $this->tpl->setOnScreenMessage(
212 $this->
lng->txt(
'dcl_tableview_default_value_fail'),
215 $this->
ctrl->saveParameter($this,
'tableview_id');
216 $this->
ctrl->redirect($this,
'presentation');
220 $default_value =
$f->create($data_type_id);
221 $default_value->setTviewSetId(
$id);
222 $default_value->setValue($value);
223 $default_value->create();
230 foreach ($this->tableview->getFieldSettings() as $setting) {
231 if (!$setting->getFieldObject()->isStandardField()) {
234 foreach (array(
"RadioGroup") as $attribute) {
235 $selection_key = $attribute .
'_' . $setting->getField();
236 $selection = $this->
http->wrapper()->post()->retrieve(
238 $this->
refinery->kindlyTo()->string()
240 $selected_radio_attribute = explode(
"_", $selection)[0];
242 foreach (array(
"LockedCreate",
246 ) as $radio_attribute) {
249 if ($selected_radio_attribute === $radio_attribute) {
253 $setting->{
'set' . $radio_attribute}($result);
258 foreach (array(
"DefaultValue") as $attribute) {
259 $key = $attribute .
'_' . $setting->getField();
260 if ($this->
http->wrapper()->post()->has(
$key)) {
261 $attribute_value = $this->
http->wrapper()->post()->retrieve(
263 $this->
refinery->kindlyTo()->string()
266 $attribute_value =
"";
269 $setting->{
'set' . $attribute}($attribute_value);
278 if (!is_null($view)) {
279 $view->setStepC(
true);
283 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'dcl_msg_tableview_updated'),
true);
284 $this->
ctrl->saveParameter($this,
'tableview_id');
285 $this->
ctrl->redirect($this,
'presentation');
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...
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilDclTableView $tableview
static findAll(int $data_type_id, int $tview_id)
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...
postOutputProcessing(string $a_output)
Finalizing output processing.
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.
ILIAS Refinery Factory $refinery
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...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupObjectId(int $ref_id)
ilDclCreateViewTableGUI $table_gui
setPresentationTitle(string $a_title="")
__construct(Container $dic, ilPlugin $plugin)
__construct(int $tableview_id)
ILIAS HTTP Services $http
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...