diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2018-12-05 18:37:30 +0100 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2018-12-05 18:37:30 +0100 |
commit | 7fb607b48c181512b31f52a7ef7e302f331ec18d (patch) | |
tree | c4d89cba3c0d01679ed1455e0d7c39fa2fdb824c /app/class/controllerinfo.php | |
parent | ad3aed389f2e0d69802641f5a5b7c6add73f1ce5 (diff) | |
download | wcms-7fb607b48c181512b31f52a7ef7e302f331ec18d.tar.gz wcms-7fb607b48c181512b31f52a7ef7e302f331ec18d.zip |
mediastyle
Diffstat (limited to 'app/class/controllerinfo.php')
-rw-r--r-- | app/class/controllerinfo.php | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/app/class/controllerinfo.php b/app/class/controllerinfo.php new file mode 100644 index 0000000..8f8b494 --- /dev/null +++ b/app/class/controllerinfo.php @@ -0,0 +1,25 @@ +<?php + +class Controllerinfo extends Controller +{ + + public function __construct($render) { + parent::__construct($render); + + + } + + public function desktop() + { + if($this->user->iseditor()) { + $this->showtemplate('info', []); + } + } + + + + +} + + +?>
\ No newline at end of file |