aboutsummaryrefslogtreecommitdiff
path: root/lib/models/ColourValue.php
diff options
context:
space:
mode:
authorPhilipp Schüttlöffel <schuettloeffel@zqs.uni-hannover.de>2024-09-24 10:53:31 +0200
committerPhilipp Schüttlöffel <schuettloeffel@zqs.uni-hannover.de>2024-09-24 10:53:31 +0200
commit4459dd7917f4d1c34f40bb68f0e991e9c3d53e4c (patch)
tree5c07151ae61276d334e88f6309c30d439a85c12e /lib/models/ColourValue.php
parentda0022e5c1abbf9825ae76debaabdff7e8623bb4 (diff)
parent97a188592c679890a25c37ab78463add76a52ff7 (diff)
Merge branch 'main' into issue-3911issue-3911
Diffstat (limited to 'lib/models/ColourValue.php')
-rw-r--r--lib/models/ColourValue.php104
1 files changed, 104 insertions, 0 deletions
diff --git a/lib/models/ColourValue.php b/lib/models/ColourValue.php
new file mode 100644
index 0000000..486de45
--- /dev/null
+++ b/lib/models/ColourValue.php
@@ -0,0 +1,104 @@
+<?php
+
+/**
+ * ColorValue.php
+ * model class for table color_values
+ *
+ * Objects of this class holds a colour's name (its purpose)
+ * and the value for the colour.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of
+ * the License, or (at your option) any later version.
+ *
+ * @author Moritz Strohm <strohm@data-quest.de>
+ * @copyright 2018-2019
+ * @since 4.5
+ * @license http://www.gnu.org/licenses/gpl-2.0.html GPL version 2
+ * @category Stud.IP
+ *
+ * @property string $id alias column for colour_id
+ * @property string $colour_id database column
+ * @property I18NString $description database column
+ * @property string $value database column
+ * @property int $mkdate database column
+ * @property int $chdate database column
+ */
+class ColourValue extends SimpleORMap
+{
+ protected static function configure($config = [])
+ {
+ $config['db_table'] = 'colour_values';
+
+ $config['i18n_fields']['description'] = true;
+
+ parent::configure($config);
+ }
+
+ /**
+ * $colours is an array with all colour values that is filled
+ * when a colour is requested.
+ */
+ protected static $colours;
+
+ /**
+ * The find method is overloaded here since the table is usually very
+ * small and the colour values are requested often. They are stored
+ * in an array and served from there to save database requests.
+ */
+ public static function find($id)
+ {
+ if (!is_array(self::$colours)) {
+ self::$colours = [];
+ //Load all colours:
+ $colours = self::findBySql('TRUE');
+ foreach ($colours as $colour) {
+ self::$colours[$colour->id] = $colour;
+ }
+ }
+
+ return self::$colours[$id];
+ }
+
+
+ /**
+ * DEVELOPER WARNING: Do not rename this method to setValue since setValue
+ * is a SimpleORMap reserved method for setting attribute values
+ * of a SORM object!
+ */
+ public function setColourValue($r = 0xff, $g = 0xff, $b = 0xff, $a = 0xff)
+ {
+ $value = dechex($r) . dechex($g) . dechex($b) . dechex($a);
+ $this->value = $value;
+ }
+
+
+ public function __toString()
+ {
+ $r = $this->value[0] . $this->value[1];
+ $g = $this->value[2] . $this->value[3];
+ $b = $this->value[4] . $this->value[5];
+
+ //The color values are output as '#RRGGBB'.
+ //This way it is compatible with the input type color.
+ return mb_strtolower('#' . $r . $g . $b);
+ }
+
+
+ public function toRGBAFunction()
+ {
+ $r = $this->value[0] . $this->value[1];
+ $g = $this->value[2] . $this->value[3];
+ $b = $this->value[4] . $this->value[5];
+ $a = $this->value[6] . $this->value[7];
+
+ return sprintf(
+ 'rgba(%s %s %s %s)',
+ hexdec($r),
+ hexdec($g),
+ hexdec($b),
+ hexdec($a)
+ );
+ }
+}