aboutsummaryrefslogtreecommitdiff
path: root/app/class/Controllerinfo.php
blob: af81cafbb349d380ab4b2ca02e068b4f258abcc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php

namespace Wcms;

class Controllerinfo extends Controller
{

    public function __construct($render) {
        parent::__construct($render);
    }

    public function desktop()
    {
        if($this->user->iseditor()) {
            $this->showtemplate('info', ['version' => getversion()]);
        }
    }



  


}


?>