ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjectCustomIconConfigurationGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 {
25  protected const DEFAULT_CMD = 'showForm';
26 
27  protected Container $dic;
28  protected ilObject $object;
30  protected $parentGui;
32 
33  public function __construct(Container $dic, $parentGui, ilObject $object)
34  {
35  global $DIC;
36  $this->main_tpl = $DIC->ui()->mainTemplate();
37  $this->dic = $dic;
38  $this->parentGui = $parentGui;
39  $this->object = $object;
40  }
41 
42  public function executeCommand(): void
43  {
44  $this->dic->ctrl()->getNextClass($this);
45  $cmd = $this->dic->ctrl()->getCmd(self::DEFAULT_CMD);
46 
47  switch (true) {
48  case method_exists($this, $cmd):
49  $this->{$cmd}();
50  break;
51 
52  default:
53  $this->{self::DEFAULT_CMD}();
54  break;
55  }
56  }
57 
58  protected function showForm(?ilPropertyFormGUI $form = null): void
59  {
60  if (null === $form) {
61  $form = $this->getForm();
62  }
63 
64  $this->dic->ui()->mainTemplate()->setContent($form->getHTML());
65  }
66 
67  protected function getForm(): ilPropertyFormGUI
68  {
69  $this->dic->language()->loadLanguageModule('cntr');
70 
71  $form = new ilPropertyFormGUI();
72  $form->setFormAction($this->dic->ctrl()->getFormAction($this, 'saveForm'));
73  $form->setTitle($this->dic->language()->txt('icon_settings'));
74 
75  $this->addSettingsToForm($form);
76 
77  $form->addCommandButton('saveForm', $this->dic->language()->txt('save'));
78 
79  return $form;
80  }
81 
82  public function addSettingsToForm(ilPropertyFormGUI $form): void
83  {
87  throw new Exception('Not Implemented Exception!');
88  }
89 
90  protected function saveForm(): void
91  {
92  $form = $this->getForm();
93  if ($form->checkInput()) {
94  $this->saveIcon($form);
95 
96  $this->main_tpl->setOnScreenMessage('success', $this->dic->language()->txt('msg_obj_modified'), true);
97  $this->dic->ctrl()->redirect($this, 'showForm');
98  }
99 
100  $form->setValuesByPost();
101  $this->showForm($form);
102  }
103 
104  public function saveIcon(ilPropertyFormGUI $form): void
105  {
107  $customIconFactory = $this->dic['object.customicons.factory'];
108  $customIcon = $customIconFactory->getByObjId($this->object->getId(), $this->object->getType());
109 
111  $fileData = (array) $form->getInput('icon');
112  $item = $form->getItemByPostVar('icon');
113 
114  if ($item && $item->getDeletionFlag()) {
115  $customIcon->remove();
116  }
117 
118  if (isset($fileData['tmp_name']) && $fileData['tmp_name']) {
119  $customIcon->saveFromHttpRequest();
120  }
121  }
122 }
getItemByPostVar(string $a_post_var)
__construct(Container $dic, $parentGui, ilObject $object)
getInput(string $a_post_var, bool $ensureValidation=true)
Returns the input of an item, if item provides getInput method and as fallback the value of the HTTP-...
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:35
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
global $DIC
Definition: shib_login.php:22