{# # --------------------------------------------------------------------- # # GLPI - Gestionnaire Libre de Parc Informatique # # http://glpi-project.org # # @copyright 2015-2024 Teclib' and contributors. # @copyright 2003-2014 by the INDEPNET Development Team. # @licence https://www.gnu.org/licenses/gpl-3.0.html # # --------------------------------------------------------------------- # # LICENSE # # This file is part of GLPI. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # --------------------------------------------------------------------- #} {% import 'components/form/fields_macros.html.twig' as fields %} {{ fields.dropdownArrayField( main_config_field.input_name, main_config_field.value, main_config_field.possible_values, main_config_field.label, options ) }}
{% set actors_dropdown = call('Glpi\\Form\\Dropdown\\FormActorsDropdown::show', [ specific_value_extra_field.input_name, specific_value_extra_field.values, { multiple: true, allowed_types: specific_value_extra_field.allowed_types, aria_label: specific_value_extra_field.aria_label, } ]) %} {{ fields.htmlField( specific_value_extra_field.input_name, actors_dropdown, '', { no_label: true, wrapper_class: '', } ) }}
{{ fields.dropdownArrayField( specific_answer_extra_field.input_name, '', specific_answer_extra_field.possible_values, "", options|merge({ no_label: true, multiple: true, values: specific_answer_extra_field.values, aria_label: specific_answer_extra_field.aria_label, }) ) }}