. * --------------------------------------------------------------------- */ include ('../inc/includes.php'); Session::checkSeveralRightsOr(['rule_dictionnary_dropdown' => READ, 'rule_dictionnary_software' => READ]); Html::header(__('Administration'), $_SERVER['PHP_SELF'], "admin", "dictionnary", -1); RuleCollection::titleBackup(); $dictionnaries = RuleCollection::getDictionnaries(); echo "
"; echo ""; echo ""; foreach ($dictionnaries as $dictionnary) { echo ""; echo "
" . __('Dictionaries') . "
"; echo ""; foreach ($dictionnary['entries'] as $entry) { echo ""; } echo "
" . $dictionnary['type'] . "
"; echo "" . $entry['label'] ."
"; } echo "
"; Html::footer();