can('export','configure')) return; $settingMenu[]= array( 'sort' =>30, 'url' => 'setting.php?section=export', 'icon' => 'fas fa-angle-right', 'label' => 'Export modèle' ); } //Déclaration des pages de réglages function export_content_setting(){ global $_; if(file_exists(__DIR__.SLASH.'setting.'.$_['section'].'.php')) require_once(__DIR__.SLASH.'setting.'.$_['section'].'.php'); } //Déclation des assets Plugin::addCss("/css/main.css"); Plugin::addJs("/js/main.js"); Plugin::addJs("/js/component.js",true); //Mapping hook / fonctions Plugin::addHook("install", "export_install"); Plugin::addHook("uninstall", "export_uninstall"); Plugin::addHook("section", "export_section"); Plugin::addHook("page", "export_page"); Plugin::addHook("action", "export_action"); Plugin::addHook("menu_setting", "export_menu_setting"); Plugin::addHook("content_setting", "export_content_setting"); ?>