ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilColorPickerInputGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
27 {
28  protected string $hex = "";
29  protected bool $acceptnamedcolors = false;
30  protected string $defaultcolor = "";
31 
32  public function __construct(
33  string $a_title = "",
34  string $a_postvar = ""
35  ) {
36  parent::__construct($a_title, $a_postvar);
37  $this->setType("color");
38  $this->setDefaultColor("04427e");
39  }
40 
41  public function checkInput(): bool
42  {
43  if ($this->getRequired() && !strlen($this->getInput())
44  ) {
45  $this->setAlert($this->lng->txt("msg_input_is_required"));
46  return false;
47  }
48 
49  return true;
50  }
51 
52  public function getInput(): string
53  {
54  $value = trim($this->str($this->getPostVar()));
55  if ($this->getAcceptNamedColors() && substr($value, 0, 1) == "!") {
56  return $value;
57  }
58  return $this->determineHexcode($value);
59  }
60 
61  public function setValueByArray(array $a_values): void
62  {
63  $this->setValue($a_values[$this->getPostVar()]);
64  }
65 
66  public function setValue($a_value): void
67  {
68  $a_value = trim($a_value);
69  if ($this->getAcceptNamedColors() && substr($a_value, 0, 1) == "!") {
70  parent::setValue($a_value);
71  } else {
72  $this->hex = ilColorPickerInputGUI::determineHexcode($a_value);
73  parent::setValue($this->getHexcode());
74  }
75  }
76 
77  public function setDefaultColor(string $a_defaultcolor): void
78  {
79  $this->defaultcolor = $a_defaultcolor;
80  }
81 
82  public function getDefaultColor(): string
83  {
84  return $this->defaultcolor;
85  }
86 
87  // Set Accept Named Colors (Leading '!').
88  public function setAcceptNamedColors(bool $a_acceptnamedcolors): void
89  {
90  $this->acceptnamedcolors = $a_acceptnamedcolors;
91  }
92 
93  public function getAcceptNamedColors(): bool
94  {
96  }
97 
98  public function getHexcode(): string
99  {
100  if (strpos($this->hex, '#') === 0) {
101  return substr($this->hex, 1);
102  }
103  return $this->hex ?: $this->getDefaultColor();
104  }
105 
106  public static function determineHexcode(string $a_value): string
107  {
108  $a_value = trim(strtolower($a_value));
109 
110  // remove leading #
111  if (strpos($a_value, '#') === 0) {
112  $a_value = substr($a_value, 1);
113  }
114 
115  // handle standard color names (no leading (!))
116  switch ($a_value) {
117  // html4 colors
118  case "black": $a_value = "000000";
119  break;
120  case "maroon": $a_value = "800000";
121  break;
122  case "green": $a_value = "008000";
123  break;
124  case "olive": $a_value = "808000";
125  break;
126  case "navy": $a_value = "000080";
127  break;
128  case "purple": $a_value = "800080";
129  break;
130  case "teal": $a_value = "008080";
131  break;
132  case "silver": $a_value = "C0C0C0";
133  break;
134  case "gray": $a_value = "808080";
135  break;
136  case "red": $a_value = "ff0000";
137  break;
138  case "lime": $a_value = "00ff00";
139  break;
140  case "yellow": $a_value = "ffff00";
141  break;
142  case "blue": $a_value = "0000ff";
143  break;
144  case "fuchsia": $a_value = "ff00ff";
145  break;
146  case "aqua": $a_value = "00ffff";
147  break;
148  case "white": $a_value = "ffffff";
149  break;
150 
151  // other colors used by ILIAS, supported by modern browsers
152  case "brown": $a_value = "a52a2a";
153  break;
154  }
155 
156  // handle rgb values
157  if (substr($a_value, 0, 3) == "rgb") {
158  $pos1 = strpos($a_value, "(");
159  $pos2 = strpos($a_value, ")");
160  $rgb = explode(",", substr($a_value, $pos1 + 1, $pos2 - $pos1 - 1));
161  $r = str_pad(dechex((int) $rgb[0]), 2, "0", STR_PAD_LEFT);
162  $g = str_pad(dechex((int) $rgb[1]), 2, "0", STR_PAD_LEFT);
163  $b = str_pad(dechex((int) $rgb[2]), 2, "0", STR_PAD_LEFT);
164  $a_value = $r . $g . $b;
165  }
166 
167  $a_value = trim(strtolower($a_value));
168 
169  // expand three digit hex numbers
170  if (preg_match("/^[a-f0-9]{3}/", $a_value) && strlen($a_value) == 3) {
171  $a_value = "" . $a_value;
172  $a_value = $a_value[0] . $a_value[0] . $a_value[1] . $a_value[1] . $a_value[2] . $a_value[2];
173  }
174 
175  if (!preg_match("/^[a-f0-9]{6}/", $a_value)) {
176  $a_value = "";
177  }
178 
179  return strtoupper($a_value);
180  }
181 
182  public function insert(ilTemplate $a_tpl): void
183  {
184  $tpl = new ilTemplate('tpl.prop_color.html', true, true, 'components/ILIAS/Form');
185  $tpl->setVariable('COLOR_ID', $this->getFieldId());
187  if ($ic == "") {
188  $ic = "FFFFFF";
189  }
190  $tpl->setVariable('INIT_COLOR_SHORT', $ic);
191  $tpl->setVariable('POST_VAR', $this->getPostVar());
192 
193  if ($this->getDisabled()) {
194  $a_tpl->setVariable('COLOR_DISABLED', 'disabled="disabled"');
195  }
196 
197  $tpl->setVariable("POST_VAR", $this->getPostVar());
198  $tpl->setVariable("PROP_COLOR_ID", $this->getFieldId());
199 
200  if (substr(trim($this->getValue() ?? ""), 0, 1) == "!" && $this->getAcceptNamedColors()) {
201  $tpl->setVariable(
202  "PROPERTY_VALUE_COLOR",
204  );
205  } else {
206  $tpl->setVariable("PROPERTY_VALUE_COLOR", ilLegacyFormElementsUtil::prepareFormOutput($this->getHexcode()));
207  $tpl->setVariable('INIT_COLOR', '#' . $this->getHexcode());
208  }
209 
210  $a_tpl->setCurrentBlock("prop_generic");
211  $a_tpl->setVariable("PROP_GENERIC", $tpl->get());
212  $a_tpl->parseCurrentBlock();
213  }
214 }
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
setAcceptNamedColors(bool $a_acceptnamedcolors)
Color picker form for selecting color hexcodes using yui library.
setDefaultColor(string $a_defaultcolor)
__construct(string $a_title="", string $a_postvar="")
static prepareFormOutput($a_str, bool $a_strip=false)
setVariable($variable, $value='')
Sets a variable value.
Definition: IT.php:544
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
static determineHexcode(string $a_value)
__construct(Container $dic, ilPlugin $plugin)
$r