ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilTRBLBorderStyleInputGUI.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 = "";
36  protected array $dirs = [];
37  protected ilObjUser $user;
38  protected string $value = "";
39 
40  public function __construct(string $a_title = "", string $a_postvar = "")
41  {
42  global $DIC;
43 
44  $this->lng = $DIC->language();
45  $this->user = $DIC->user();
46  parent::__construct($a_title, $a_postvar);
47  $this->setType("border_style");
48  $this->dirs = array("all", "top", "bottom", "left", "right");
49  }
50 
51  public function setAllValue(string $a_allvalue): void
52  {
53  $this->allvalue = $a_allvalue;
54  }
55 
56  public function getAllValue(): string
57  {
58  return $this->allvalue;
59  }
60 
61  public function setTopValue(string $a_topvalue): void
62  {
63  $this->topvalue = $a_topvalue;
64  }
65 
66  public function getTopValue(): string
67  {
68  return $this->topvalue;
69  }
70 
71  public function setBottomValue(string $a_bottomvalue): void
72  {
73  $this->bottomvalue = $a_bottomvalue;
74  }
75 
76  public function getBottomValue(): string
77  {
78  return $this->bottomvalue;
79  }
80 
81  public function setLeftValue(string $a_leftvalue): void
82  {
83  $this->leftvalue = $a_leftvalue;
84  }
85 
86  public function getLeftValue(): string
87  {
88  return $this->leftvalue;
89  }
90 
91  public function setRightValue(string $a_rightvalue): void
92  {
93  $this->rightvalue = $a_rightvalue;
94  }
95 
96  public function getRightValue(): string
97  {
98  return $this->rightvalue;
99  }
100 
101  public function checkInput(): bool
102  {
103  $input = $this->getInput();
104 
105  foreach ($this->dirs as $dir) {
106  $pre_value = $input[$dir]["pre_value"];
107 
108  /*
109  if ($this->getRequired() && trim($num_value) == "")
110  {
111  $this->setAlert($lng->txt("msg_input_is_required"));
112 
113  return false;
114  }*/
115 
116  $value = $pre_value;
117 
118  if (trim($value) != "") {
119  switch ($dir) {
120  case "all": $this->setAllValue($value); break;
121  case "top": $this->setTopValue($value); break;
122  case "bottom": $this->setBottomValue($value); break;
123  case "left": $this->setLeftValue($value); break;
124  case "right": $this->setRightValue($value); break;
125  }
126  }
127  }
128 
129  return true;
130  }
131 
132  public function getInput(): array
133  {
134  return $this->arrayArray($this->getPostVar());
135  }
136 
137  public function insert(ilTemplate $a_tpl): void
138  {
139  $lng = $this->lng;
140  $value = "";
141  $layout_tpl = new ilTemplate("tpl.prop_trbl_layout.html", true, true, "Services/Style/Content");
142 
143  foreach ($this->dirs as $dir) {
144  $tpl = new ilTemplate("tpl.prop_trbl_select.html", true, true, "Services/Style/Content");
145  $pre_options = array_merge(
146  array("" => ""),
148  );
149 
150  switch ($dir) {
151  case "all": $value = strtolower(trim($this->getAllValue())); break;
152  case "top": $value = strtolower(trim($this->getTopValue())); break;
153  case "bottom": $value = strtolower(trim($this->getBottomValue())); break;
154  case "left": $value = strtolower(trim($this->getLeftValue())); break;
155  case "right": $value = strtolower(trim($this->getRightValue())); break;
156  }
157 
158  foreach ($pre_options as $option) {
159  $tpl->setCurrentBlock("pre_option");
160  $tpl->setVariable("VAL_PRE", $option);
161  $tpl->setVariable("TXT_PRE", $option);
162  if ($value == $option) {
163  $tpl->setVariable("PRE_SELECTED", 'selected="selected"');
164  }
165  $tpl->parseCurrentBlock();
166  }
167 
168  $tpl->setVariable("POSTVAR", $this->getPostVar());
169  $tpl->setVariable("TXT_DIR", $lng->txt("sty_$dir"));
170  $tpl->setVariable("DIR", $dir);
171 
172  $layout_tpl->setVariable(strtoupper($dir), $tpl->get());
173  }
174 
175  $a_tpl->setCurrentBlock("prop_generic");
176  $a_tpl->setVariable("PROP_GENERIC", $layout_tpl->get());
177  $a_tpl->parseCurrentBlock();
178  }
179 
180  public function setValueByArray(array $a_values): void
181  {
182  $this->setAllValue($a_values[$this->getPostVar()]["all"]["pre_value"]);
183  $this->setBottomValue($a_values[$this->getPostVar()]["bottom"]["pre_value"]);
184  $this->setTopValue($a_values[$this->getPostVar()]["top"]["pre_value"]);
185  $this->setLeftValue($a_values[$this->getPostVar()]["left"]["pre_value"]);
186  $this->setRightValue($a_values[$this->getPostVar()]["right"]["pre_value"]);
187  }
188 }
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...
global $DIC
Definition: feed.php:28
__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...
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)
static _getStyleParameterValues(string $par)
if($DIC->http() ->request() ->getMethod()=="GET" &&isset($DIC->http() ->request() ->getQueryParams()['tex'])) $tpl
Definition: latex.php:41