* * @copyright Copyright (C) 2018-2020, Frédéric Tempez * @link http://zwiicms.com/ */ class version extends common { const VERSION = '1.0'; const REALNAME = 'Version'; const DELETE = true; const UPDATE = '0.0'; const DATADIRECTORY = []; // Contenu localisé inclus par défaut (page.json et module.json) public static $actions = [ 'index'=> self::GROUP_VISITOR ]; /** * Retourne le numéro de version */ public function index() { exit( common::ZWII_VERSION); } }