* @copyright Copyright (C) 2008-2018, Rémi Jean * @author Frédéric Tempez * @copyright Copyright (C) 2018-2022, Frédéric Tempez * @license GNU General Public License, version 3 * @link http://zwiicms.fr/ */ class sitemap extends common { public static $actions = [ 'index' => self::GROUP_VISITOR ]; public static $siteMap = ''; /** * Plan du site */ public function index() { $items = ''; self::$siteMap = $items; // Valeurs en sortie $this->addOutput([ 'title' => 'Plan du site', 'view' => 'index' ]); } }