diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2020-01-29 16:52:37 +0100 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2020-01-29 16:52:37 +0100 |
commit | a30e115d62f10183acb7ff946821aaf066d4a61e (patch) | |
tree | a46e410e24c93e7f6fe824974ddaae9583208535 /app/class/Controllerhome.php | |
parent | 74fb648d199bf70a3401b38fbf5a7654fdc0f23e (diff) | |
download | wcms-a30e115d62f10183acb7ff946821aaf066d4a61e.tar.gz wcms-a30e115d62f10183acb7ff946821aaf066d4a61e.zip |
working on cssparser for tags colors
Diffstat (limited to 'app/class/Controllerhome.php')
-rw-r--r-- | app/class/Controllerhome.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app/class/Controllerhome.php b/app/class/Controllerhome.php index 1603511..81e4300 100644 --- a/app/class/Controllerhome.php +++ b/app/class/Controllerhome.php @@ -27,11 +27,12 @@ class Controllerhome extends Controllerpage } else { - - $table = $this->modelhome->getlister(); $this->opt = $this->modelhome->optinit($table); + $css = 'a.tag_bgg-fds_gd { background-color: #FF0021; } '; + $this->opt->parsetagcss($css); + $table2 = $this->modelhome->table2($table, $this->opt); $columns = $this->modelhome->setcolumns($this->user->columns()); |