4 include_once(
"./Services/Component/classes/class.ilPluginConfigGUI.php");
5 include_once(
"class.ilCloudPluginConfig.php");
70 include_once(
"class.ilCloudPluginConfig.php");
92 $tpl->setContent($this->form->getHTML());
98 foreach ($this->
fields as $key => $item) {
99 $values[$key] = $this->
object->getValue($key);
100 if (is_array($item[
"subelements"])) {
101 foreach ($item[
"subelements"] as $subkey => $subitem) {
102 $values[$key .
"_" . $subkey] = $this->
object->getValue($key .
"_" . $subkey);
107 $this->form->setValuesByArray($values);
118 $ilCtrl = $DIC[
'ilCtrl'];
120 include_once(
"./Services/Form/classes/class.ilPropertyFormGUI.php");
123 foreach ($this->
fields as $key => $item) {
124 $field =
new $item[
"type"]($this->plugin_object->txt($key), $key);
125 $field->setInfo($this->plugin_object->txt($item[
"info"]));
126 if (is_array($item[
"subelements"])) {
127 foreach ($item[
"subelements"] as $subkey => $subitem) {
128 $subfield =
new $subitem[
"type"]($this->plugin_object->txt($key .
"_" . $subkey), $key .
"_" . $subkey);
129 $subfield->setInfo($this->plugin_object->txt($subitem[
"info"]));
130 $field->addSubItem($subfield);
134 $this->form->addItem($field);
137 $this->form->addCommandButton(
"save",
$lng->txt(
"save"));
139 $this->form->setTitle($this->plugin_object->txt(
"configuration"));
140 $this->form->setFormAction($ilCtrl->getFormAction($this));
150 $ilCtrl = $DIC[
'ilCtrl'];
153 if ($this->form->checkInput()) {
156 foreach ($this->
fields as $key => $item) {
157 $this->
object->setValue($key, $this->form->getInput($key));
158 if (is_array($item[
"subelements"])) {
159 foreach ($item[
"subelements"] as $subkey => $subitem) {
160 $this->
object->setValue($key .
"_" . $subkey, $this->form->getInput($key .
"_" . $subkey));
165 $ilCtrl->redirect($this,
"configure");
167 $this->form->setValuesByPost();
168 $tpl->setContent($this->form->getHtml());
performCommand($cmd)
Handles all commmands, default is "configure".
Parent class for all plugin config gui classes.
Class ilCloudPluginConfig.
configure()
Configure screen.
getPluginObject()
Get plugin object.
Class ilCloudPluginConfigGUI.
if($DIC->http() ->request() ->getMethod()=="GET" &&isset($DIC->http() ->request() ->getQueryParams()['tex'])) $tpl