* @copyright Copyright (C) 2021, Sylvain Lelièvre * @license GNU General Public License, version 3 * @link https://deltacms.fr/ * * Delta was created from version 11.2.00.24 of ZwiiCMS * @author Rémi Jean * @copyright Copyright (C) 2008-2018, Rémi Jean * @author Frédéric Tempez * @copyright Copyright (C) 2018-2021, Frédéric Tempez */ class sitemap extends common { public static $actions = [ 'index' => self::GROUP_VISITOR ]; public static $siteMap = ''; /** * Plan du site */ public function index() { // Lexique include('./core/module/sitemap/lang/'. $this->getData(['config', 'i18n', 'langAdmin']) . '/lex_sitemap.php'); $items = ''; self::$siteMap = $items; // Valeurs en sortie $this->addOutput([ 'title' => $text['core_sitemap']['index'][0], 'view' => 'index' ]); } }