diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2018-09-22 14:05:19 +0200 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2018-09-22 14:05:19 +0200 |
commit | c3c4be4a4efd1404aad19797c15d2a9a6ffe29a6 (patch) | |
tree | a231ef1dc9171ae589b21ea4826bba20cba2c63d /class/class.w.config.php | |
parent | 701c4637294fc9b63d53a8eeb26d46ef94af1941 (diff) | |
download | wcms-c3c4be4a4efd1404aad19797c15d2a9a6ffe29a6.tar.gz wcms-c3c4be4a4efd1404aad19797c15d2a9a6ffe29a6.zip |
2.7 table duplicate + css edit + desktop color
Diffstat (limited to 'class/class.w.config.php')
-rw-r--r-- | class/class.w.config.php | 13 |
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; + } + } + } |