19 declare(strict_types=1);
36 $this->
ctrl = $DIC->ctrl();
37 $this->
lng = $DIC->language();
38 $this->
http = $DIC->http();
40 $this->tpl = $DIC->ui()->mainTemplate();
46 if ($this->
ctrl->getCmd() ===
'saveTable') {
50 $this->tpl->setContent($table->getHTML());
55 public function saveTable():
void 58 $raw_values = $this->
http->request()->getParsedBody();
59 foreach ($raw_values as $key => $value) {
60 if (strpos($key,
"default_") === 0) {
61 $parts = explode(
"_", $key);
63 $data_type_id = intval(
$parts[2]);
68 if (!is_null($existing_values)) {
69 foreach ($existing_values as $existing_value) {
70 $existing_value->delete();
77 $default_value =
$f->create($data_type_id);
79 if (!ctype_digit($value)) {
80 $this->tpl->setOnScreenMessage(
82 $this->
lng->txt(
'dcl_tableview_default_value_fail'),
85 $this->
ctrl->saveParameter($this,
'tableview_id');
86 $this->
ctrl->redirect($this,
'presentation');
90 if ($default_value::class == ilDclTableViewNumberDefaultValue::class) {
91 $default_value->setValue((
int) $value);
93 $default_value->setValue($value);
95 $default_value->setTviewSetId((
int) $id);
96 $default_value->create();
103 foreach ($this->tableview->getFieldSettings() as $setting) {
104 if (!$setting->getFieldObject()->isStandardField()) {
107 $attribute =
"RadioGroup";
108 $selection_key = $attribute .
'_' . $setting->getField();
109 $selection = $this->
http->wrapper()->post()->retrieve(
111 $this->
refinery->kindlyTo()->string()
113 $selected_radio_attribute = explode(
"_", $selection)[0];
115 foreach ([
"LockedCreate",
119 ] as $radio_attribute) {
122 if ($selected_radio_attribute === $radio_attribute) {
126 $setting->{
'set' . $radio_attribute}($result);
130 $attribute =
"DefaultValue";
131 $key = $attribute .
'_' . $setting->getField();
132 if ($this->
http->wrapper()->post()->has($key)) {
133 $attribute_value = $this->
http->wrapper()->post()->retrieve(
135 $this->
refinery->kindlyTo()->string()
138 $attribute_value =
"";
141 $setting->{
'set' . $attribute}($attribute_value);
147 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'dcl_msg_tableview_updated'),
true);
148 $this->
ctrl->saveParameter($this,
'tableview_id');
149 $this->
ctrl->redirect($this,
'presentation');
static findOrGetInstance($primary_key, array $add_constructor_args=[])
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
ilDclCreateViewDefinitionGUI: ilDclTableViewEditGUI
ilDclTableView $tableview
static findAll(int $data_type_id, int $tview_id)
static http()
Fetches the global http state from ILIAS.
ILIAS Refinery Factory $refinery
ilGlobalTemplateInterface $tpl
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
__construct(int $tableview_id)
ILIAS HTTP Services $http