ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilTRBLNumericStyleValueInputGUI.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
27 {
28  protected string $rightvalue = "";
29  protected string $leftvalue = "";
30  protected string $bottomvalue = "";
31  protected string $topvalue = "";
32  protected string $allvalue = "";
33 
37  protected array $dirs;
38  protected ilObjUser $user;
39  protected string $value;
40  protected bool $allowpercentage = true;
41 
42  public function __construct(string $a_title = "", string $a_postvar = "")
43  {
44  global $DIC;
45 
46  $this->lng = $DIC->language();
47  $this->user = $DIC->user();
48  parent::__construct($a_title, $a_postvar);
49  $this->setType("style_numeric");
50  $this->dirs = array("all", "top", "bottom", "left", "right");
51  }
52 
53  public function setAllValue(string $a_allvalue): void
54  {
55  $this->allvalue = $a_allvalue;
56  }
57 
58  public function getAllValue(): string
59  {
60  return $this->allvalue;
61  }
62 
63  public function setTopValue(string $a_topvalue): void
64  {
65  $this->topvalue = $a_topvalue;
66  }
67 
68  public function getTopValue(): string
69  {
70  return $this->topvalue;
71  }
72 
73  public function setBottomValue(string $a_bottomvalue): void
74  {
75  $this->bottomvalue = $a_bottomvalue;
76  }
77 
78  public function getBottomValue(): string
79  {
80  return $this->bottomvalue;
81  }
82 
83  public function setLeftValue(string $a_leftvalue): void
84  {
85  $this->leftvalue = $a_leftvalue;
86  }
87 
88  public function getLeftValue(): string
89  {
90  return $this->leftvalue;
91  }
92 
93  public function setRightValue(string $a_rightvalue): void
94  {
95  $this->rightvalue = $a_rightvalue;
96  }
97 
98  public function getRightValue(): string
99  {
100  return $this->rightvalue;
101  }
102 
103  public function setAllowPercentage(bool $a_allowpercentage): void
104  {
105  $this->allowpercentage = $a_allowpercentage;
106  }
107 
108  public function getAllowPercentage(): bool
109  {
110  return $this->allowpercentage;
111  }
112 
113  public function checkInput(): bool
114  {
115  $lng = $this->lng;
116 
117  $input = $this->getInput();
118 
119  foreach ($this->dirs as $dir) {
120  $num_value = $input[$dir]["num_value"];
121  $num_unit = $input[$dir]["num_unit"];
122 
123  /*
124  if ($this->getRequired() && trim($num_value) == "")
125  {
126  $this->setAlert($lng->txt("msg_input_is_required"));
127 
128  return false;
129  }*/
130 
131  if (!is_numeric($num_value) && $num_value != "") {
132  $this->setAlert($lng->txt("sty_msg_input_must_be_numeric"));
133  return false;
134  }
135 
136  if (trim($num_value) != "") {
137  switch ($dir) {
138  case "all": $this->setAllValue($num_value . $num_unit); break;
139  case "top": $this->setTopValue($num_value . $num_unit); break;
140  case "bottom": $this->setBottomValue($num_value . $num_unit); break;
141  case "left": $this->setLeftValue($num_value . $num_unit); break;
142  case "right": $this->setRightValue($num_value . $num_unit); break;
143  }
144  }
145  }
146 
147  return true;
148  }
149 
150  public function getInput(): array
151  {
152  return $this->arrayArray($this->getPostVar());
153  }
154 
155  public function insert(ilTemplate $a_tpl): void
156  {
157  $lng = $this->lng;
158 
159  $value = "";
160  $layout_tpl = new ilTemplate("tpl.prop_trbl_layout.html", true, true, "Services/Style/Content");
161 
162  foreach ($this->dirs as $dir) {
163  $tpl = new ilTemplate("tpl.prop_trbl_style_numeric.html", true, true, "Services/Style/Content");
165 
166  switch ($dir) {
167  case "all": $value = strtolower(trim($this->getAllValue())); break;
168  case "top": $value = strtolower(trim($this->getTopValue())); break;
169  case "bottom": $value = strtolower(trim($this->getBottomValue())); break;
170  case "left": $value = strtolower(trim($this->getLeftValue())); break;
171  case "right": $value = strtolower(trim($this->getRightValue())); break;
172  }
173 
174  $current_unit = "";
175  foreach ($unit_options as $u) {
176  if (substr($value, strlen($value) - strlen($u)) == $u) {
177  $current_unit = $u;
178  }
179  }
180  $disp_val = substr($value, 0, strlen($value) - strlen($current_unit));
181  if ($current_unit == "") {
182  $current_unit = "px";
183  }
184 
185  foreach ($unit_options as $option) {
186  $tpl->setCurrentBlock("unit_option");
187  $tpl->setVariable("VAL_UNIT", $option);
188  $tpl->setVariable("TXT_UNIT", $option);
189  if ($current_unit == $option) {
190  $tpl->setVariable("UNIT_SELECTED", 'selected="selected"');
191  }
192  $tpl->parseCurrentBlock();
193  }
194 
195  $tpl->setVariable("POSTVAR", $this->getPostVar());
196  $tpl->setVariable("VAL_NUM", $disp_val);
197  $tpl->setVariable("TXT_DIR", $lng->txt("sty_$dir"));
198  $tpl->setVariable("DIR", $dir);
199 
200  $layout_tpl->setVariable(strtoupper($dir), $tpl->get());
201  }
202 
203  $a_tpl->setCurrentBlock("prop_generic");
204  $a_tpl->setVariable("PROP_GENERIC", $layout_tpl->get());
205  $a_tpl->parseCurrentBlock();
206  }
207 
208  public function setValueByArray(array $a_values): void
209  {
210  $this->setAllValue($a_values[$this->getPostVar()]["all"]["num_value"] .
211  $a_values[$this->getPostVar()]["all"]["num_unit"]);
212  $this->setBottomValue($a_values[$this->getPostVar()]["bottom"]["num_value"] .
213  $a_values[$this->getPostVar()]["bottom"]["num_unit"]);
214  $this->setTopValue($a_values[$this->getPostVar()]["top"]["num_value"] .
215  $a_values[$this->getPostVar()]["top"]["num_unit"]);
216  $this->setLeftValue($a_values[$this->getPostVar()]["left"]["num_value"] .
217  $a_values[$this->getPostVar()]["left"]["num_unit"]);
218  $this->setRightValue($a_values[$this->getPostVar()]["right"]["num_value"] .
219  $a_values[$this->getPostVar()]["right"]["num_unit"]);
220  }
221 }
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
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...
static _getStyleParameterNumericUnits(bool $a_no_percentage=false)
global $DIC
Definition: feed.php:28
setVariable($variable, $value='')
Sets a variable value.
Definition: IT.php:514
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
This class represents a property in a property form.
__construct(Container $dic, ilPlugin $plugin)
__construct(string $a_title="", string $a_postvar="")
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
if($DIC->http() ->request() ->getMethod()=="GET" &&isset($DIC->http() ->request() ->getQueryParams()['tex'])) $tpl
Definition: latex.php:41