aboutsummaryrefslogtreecommitdiff
path: root/class/class.w.config.php
diff options
context:
space:
mode:
Diffstat (limited to 'class/class.w.config.php')
-rw-r--r--class/class.w.config.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/class/class.w.config.php b/class/class.w.config.php
index 839bf77..1d5f7b5 100644
--- a/class/class.w.config.php
+++ b/class/class.w.config.php
@@ -15,6 +15,7 @@ class Config
private $invite;
private $read;
private $cssread;
+ private $color4;
// _______________________________________ F U N _______________________________________
@@ -99,6 +100,11 @@ class Config
return $this->cssread;
}
+ public function color4()
+ {
+ return $this->color4;
+ }
+
// __________________________________________ S E T ______________________________________
@@ -158,6 +164,13 @@ class Config
$this->cssread = strip_tags($cssread);
}
+ public function setcolor4($color4)
+ {
+ if(strlen($color4) <= 8) {
+ $this->color4 = $color4;
+ }
+ }
+
}