{# # --------------------------------------------------------------------- # # GLPI - Gestionnaire Libre de Parc Informatique # # http://glpi-project.org # # @copyright 2015-2025 Teclib' and contributors. # @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 . # # --------------------------------------------------------------------- #} {% extends "generic_show_form.html.twig" %} {% import 'components/form/fields_macros.html.twig' as fields %} {% import 'components/alerts_macros.html.twig' as alerts %} {% set params = params ?? [] %} {% set customobj_ns = item.getCustomObjectNamespace() %} {% set customobj_suffix = item.getCustomObjectClassSuffix() %} {% block form_fields %} {% if not item.isNewItem() and item.isActive() and not has_rights_enabled %} {{ alerts.alert_warning(__('There is currently no profile with access to items with current definition.')) }} {% endif %} {% set helper %} {{ __('The system name field corresponds to what will be used when development is involved. Examples: API calls, webhooks, etc.') }} {{ __('It can be personalized, but some words are reserved such as classes from GLPI like Computer, Monitor, etc.') }} {{ __('Items linked to the system name "%s" will have the class "%s".')|format('Example', customobj_ns ~ '\\Example' ~ customobj_suffix) }} {% endset %} {{ fields.textField('label', item.fields['label'], __('Label')) }} {{ fields.textField( 'system_name', item.fields['system_name'], __('System name'), { disabled: not item.isNewItem(), 'helper': helper } ) }} {% if not item.isNewItem() %} {% set helper_html %} {{ __('The class of items related to current definition is "%s".')|format(customobj_ns ~ '\\%s'|format(item.fields['system_name'])) }} {% endset %} {% endif %} {% if not item.isNewItem() %} {% endif %} {{ parent() }} {% endblock %} {% block more_fields %} {{ fields.dropdownWebIcons( 'icon', item.fields['icon'], __('Icon'), ) }} {% if item.isField('picture') %} {% if item.fields['picture'] is not empty %} {{ fields.imageField('picture', item.fields['picture']|picture_url, field['label'], { 'clearable': (not item.isNewItem() and item.canUpdateItem()) }) }} {% else %} {{ fields.fileField('picture', null, _n('Picture', 'Pictures', 1), { 'onlyimages': true }) }} {% endif %} {% endif %} {% endblock %}