* @copyright Copyright (C) 2008-2018, Rémi Jean * @author Frédéric Tempez * @copyright Copyright (C) 2018-2022, Frédéric Tempez * @license CC Attribution-NonCommercial-NoDerivatives 4.0 International * @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' => helper::translate('Plan du site'), 'view' => 'index' ]); } }