19 declare(strict_types=1);
28 protected string $hex =
"";
34 string $a_postvar =
"" 45 $this->
setAlert($this->
lng->txt(
"msg_input_is_required"));
68 $a_value = trim($a_value);
70 parent::setValue($a_value);
79 $this->defaultcolor = $a_defaultcolor;
90 $this->acceptnamedcolors = $a_acceptnamedcolors;
100 if (strpos($this->hex,
'#') === 0) {
101 return substr($this->hex, 1);
108 $a_value = trim(strtolower($a_value));
111 if (strpos($a_value,
'#') === 0) {
112 $a_value = substr($a_value, 1);
118 case "black": $a_value =
"000000";
120 case "maroon": $a_value =
"800000";
122 case "green": $a_value =
"008000";
124 case "olive": $a_value =
"808000";
126 case "navy": $a_value =
"000080";
128 case "purple": $a_value =
"800080";
130 case "teal": $a_value =
"008080";
132 case "silver": $a_value =
"C0C0C0";
134 case "gray": $a_value =
"808080";
136 case "red": $a_value =
"ff0000";
138 case "lime": $a_value =
"00ff00";
140 case "yellow": $a_value =
"ffff00";
142 case "blue": $a_value =
"0000ff";
144 case "fuchsia": $a_value =
"ff00ff";
146 case "aqua": $a_value =
"00ffff";
148 case "white": $a_value =
"ffffff";
152 case "brown": $a_value =
"a52a2a";
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;
167 $a_value = trim(strtolower($a_value));
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];
175 if (!preg_match(
"/^[a-f0-9]{6}/", $a_value)) {
179 return strtoupper($a_value);
184 $tpl =
new ilTemplate(
'tpl.prop_color.html',
true,
true,
'components/ILIAS/Form');
185 $tpl->setVariable(
'COLOR_ID', $this->
getFieldId());
190 $tpl->setVariable(
'INIT_COLOR_SHORT', $ic);
191 $tpl->setVariable(
'POST_VAR', $this->
getPostVar());
194 $a_tpl->
setVariable(
'COLOR_DISABLED',
'disabled="disabled"');
197 $tpl->setVariable(
"POST_VAR", $this->
getPostVar());
198 $tpl->setVariable(
"PROP_COLOR_ID", $this->
getFieldId());
202 "PROPERTY_VALUE_COLOR",
207 $tpl->setVariable(
'INIT_COLOR',
'#' . $this->
getHexcode());
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
setVariable($variable, $value='')
Sets a variable value.
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
__construct(Container $dic, ilPlugin $plugin)