├── .github ├── ISSUE_TEMPLATE │ └── bug_report.yml ├── dependabot.yml ├── label-commenter-config.yml ├── pull_request_template.md └── workflows │ ├── auto-tag-new-version.yml │ ├── close_stale_issue.yml │ ├── continuous-integration.yml │ ├── label-commenter.yml │ ├── locales-sync.yml │ ├── locales-update-source.yml │ └── release.yml ├── .gitignore ├── .php-cs-fixer.php ├── .stylelintrc.js ├── .twig_cs.dist.php ├── .tx └── config ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── ajax ├── container.php ├── container_display_condition.php ├── container_itemtypes_dropdown.php ├── container_subtype_dropdown.php ├── field_specific_fields.php ├── reorder.php ├── status_override.php └── viewtranslations.php ├── composer.json ├── composer.lock ├── docs ├── glpi_network.png ├── logo.png └── screenshots │ ├── fields.gif │ ├── hide_block.png │ └── override_by_status.png ├── front ├── container.form.php ├── container.php ├── containerdisplaycondition.form.php ├── export_to_yaml.php ├── field.form.php ├── labeltranslation.form.php ├── profile.form.php ├── regenerate_files.php └── statusoverride.form.php ├── hook.php ├── inc ├── abstractcontainerinstance.class.php ├── autoload.php ├── checkdatabasecommand.class.php ├── command │ └── regeneratefilescommand.class.php ├── container.class.php ├── containerdisplaycondition.class.php ├── destinationfield.class.php ├── dropdown.class.php ├── field.class.php ├── inventory.class.php ├── labeltranslation.class.php ├── menu.class.php ├── migration.class.php ├── profile.class.php ├── questiontype.class.php ├── questiontypecategory.class.php ├── questiontypeextradataconfig.class.php ├── statusoverride.class.php └── toolbox.class.php ├── locales ├── cs_CZ.mo ├── cs_CZ.po ├── de_DE.mo ├── de_DE.po ├── en_GB.mo ├── en_GB.po ├── en_US.mo ├── en_US.po ├── es_AR.mo ├── es_AR.po ├── es_EC.mo ├── es_EC.po ├── es_ES.mo ├── es_ES.po ├── es_MX.mo ├── es_MX.po ├── fi_FI.mo ├── fi_FI.po ├── fields.pot ├── fr_FR.mo ├── fr_FR.po ├── hr_HR.mo ├── hr_HR.po ├── it_IT.mo ├── it_IT.po ├── ja_JP.mo ├── ja_JP.po ├── ko_KR.mo ├── ko_KR.po ├── pl_PL.mo ├── pl_PL.po ├── pt_BR.mo ├── pt_BR.po ├── pt_PT.mo ├── pt_PT.po ├── ro_RO.mo ├── ro_RO.po ├── ru_RU.mo ├── ru_RU.po ├── sk_SK.mo ├── sk_SK.po ├── sv_SE.mo ├── sv_SE.po ├── tr_TR.mo ├── tr_TR.po ├── uk_UA.mo ├── uk_UA.po ├── zh_CN.mo └── zh_CN.po ├── phpstan.neon ├── phpunit.xml ├── pics ├── container.png └── field.png ├── plugin.xml ├── public ├── css │ └── fields.scss ├── js │ ├── drag-field-row.js │ └── modules │ │ └── QuestionField.js └── lib │ └── redips-drag-min.js ├── rector.php ├── setup.php ├── src └── Controller │ └── QuestionTypeAjaxController.php ├── templates ├── container.class.tpl ├── container_display_conditions.html.twig ├── destinationfield.html.twig ├── dropdown.class.tpl ├── fields.html.twig ├── forms │ ├── container_display_condition.html.twig │ ├── container_display_condition_so_condition.html.twig │ ├── status_override.html.twig │ └── tab_container.html.twig ├── injection.class.tpl ├── question_type_administration.html.twig ├── question_type_end_user.html.twig └── status_overrides.html.twig ├── tests ├── FieldTestCase.php ├── QuestionTypeTestCase.php ├── Units │ ├── FieldDestinationFieldTest.php │ ├── FieldQuestionTypeMigrationTest.php │ └── FieldQuestionTypeTest.php ├── bootstrap.php └── fixtures │ └── formcreator.sql └── tools └── HEADER /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/label-commenter-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/.github/label-commenter-config.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/auto-tag-new-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/.github/workflows/auto-tag-new-version.yml -------------------------------------------------------------------------------- /.github/workflows/close_stale_issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/.github/workflows/close_stale_issue.yml -------------------------------------------------------------------------------- /.github/workflows/continuous-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/.github/workflows/continuous-integration.yml -------------------------------------------------------------------------------- /.github/workflows/label-commenter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/.github/workflows/label-commenter.yml -------------------------------------------------------------------------------- /.github/workflows/locales-sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/.github/workflows/locales-sync.yml -------------------------------------------------------------------------------- /.github/workflows/locales-update-source.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/.github/workflows/locales-update-source.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /.stylelintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/.stylelintrc.js -------------------------------------------------------------------------------- /.twig_cs.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/.twig_cs.dist.php -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/.tx/config -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | include ../../PluginsMakefile.mk 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ajax/container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/ajax/container.php -------------------------------------------------------------------------------- /ajax/container_display_condition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/ajax/container_display_condition.php -------------------------------------------------------------------------------- /ajax/container_itemtypes_dropdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/ajax/container_itemtypes_dropdown.php -------------------------------------------------------------------------------- /ajax/container_subtype_dropdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/ajax/container_subtype_dropdown.php -------------------------------------------------------------------------------- /ajax/field_specific_fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/ajax/field_specific_fields.php -------------------------------------------------------------------------------- /ajax/reorder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/ajax/reorder.php -------------------------------------------------------------------------------- /ajax/status_override.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/ajax/status_override.php -------------------------------------------------------------------------------- /ajax/viewtranslations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/ajax/viewtranslations.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/composer.lock -------------------------------------------------------------------------------- /docs/glpi_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/docs/glpi_network.png -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/screenshots/fields.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/docs/screenshots/fields.gif -------------------------------------------------------------------------------- /docs/screenshots/hide_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/docs/screenshots/hide_block.png -------------------------------------------------------------------------------- /docs/screenshots/override_by_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/docs/screenshots/override_by_status.png -------------------------------------------------------------------------------- /front/container.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/front/container.form.php -------------------------------------------------------------------------------- /front/container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/front/container.php -------------------------------------------------------------------------------- /front/containerdisplaycondition.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/front/containerdisplaycondition.form.php -------------------------------------------------------------------------------- /front/export_to_yaml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/front/export_to_yaml.php -------------------------------------------------------------------------------- /front/field.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/front/field.form.php -------------------------------------------------------------------------------- /front/labeltranslation.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/front/labeltranslation.form.php -------------------------------------------------------------------------------- /front/profile.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/front/profile.form.php -------------------------------------------------------------------------------- /front/regenerate_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/front/regenerate_files.php -------------------------------------------------------------------------------- /front/statusoverride.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/front/statusoverride.form.php -------------------------------------------------------------------------------- /hook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/hook.php -------------------------------------------------------------------------------- /inc/abstractcontainerinstance.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/inc/abstractcontainerinstance.class.php -------------------------------------------------------------------------------- /inc/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/inc/autoload.php -------------------------------------------------------------------------------- /inc/checkdatabasecommand.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/inc/checkdatabasecommand.class.php -------------------------------------------------------------------------------- /inc/command/regeneratefilescommand.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/inc/command/regeneratefilescommand.class.php -------------------------------------------------------------------------------- /inc/container.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/inc/container.class.php -------------------------------------------------------------------------------- /inc/containerdisplaycondition.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/inc/containerdisplaycondition.class.php -------------------------------------------------------------------------------- /inc/destinationfield.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/inc/destinationfield.class.php -------------------------------------------------------------------------------- /inc/dropdown.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/inc/dropdown.class.php -------------------------------------------------------------------------------- /inc/field.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/inc/field.class.php -------------------------------------------------------------------------------- /inc/inventory.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/inc/inventory.class.php -------------------------------------------------------------------------------- /inc/labeltranslation.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/inc/labeltranslation.class.php -------------------------------------------------------------------------------- /inc/menu.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/inc/menu.class.php -------------------------------------------------------------------------------- /inc/migration.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/inc/migration.class.php -------------------------------------------------------------------------------- /inc/profile.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/inc/profile.class.php -------------------------------------------------------------------------------- /inc/questiontype.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/inc/questiontype.class.php -------------------------------------------------------------------------------- /inc/questiontypecategory.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/inc/questiontypecategory.class.php -------------------------------------------------------------------------------- /inc/questiontypeextradataconfig.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/inc/questiontypeextradataconfig.class.php -------------------------------------------------------------------------------- /inc/statusoverride.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/inc/statusoverride.class.php -------------------------------------------------------------------------------- /inc/toolbox.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/inc/toolbox.class.php -------------------------------------------------------------------------------- /locales/cs_CZ.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/cs_CZ.mo -------------------------------------------------------------------------------- /locales/cs_CZ.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/cs_CZ.po -------------------------------------------------------------------------------- /locales/de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/de_DE.mo -------------------------------------------------------------------------------- /locales/de_DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/de_DE.po -------------------------------------------------------------------------------- /locales/en_GB.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/en_GB.mo -------------------------------------------------------------------------------- /locales/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/en_GB.po -------------------------------------------------------------------------------- /locales/en_US.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/en_US.mo -------------------------------------------------------------------------------- /locales/en_US.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/en_US.po -------------------------------------------------------------------------------- /locales/es_AR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/es_AR.mo -------------------------------------------------------------------------------- /locales/es_AR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/es_AR.po -------------------------------------------------------------------------------- /locales/es_EC.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/es_EC.mo -------------------------------------------------------------------------------- /locales/es_EC.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/es_EC.po -------------------------------------------------------------------------------- /locales/es_ES.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/es_ES.mo -------------------------------------------------------------------------------- /locales/es_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/es_ES.po -------------------------------------------------------------------------------- /locales/es_MX.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/es_MX.mo -------------------------------------------------------------------------------- /locales/es_MX.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/es_MX.po -------------------------------------------------------------------------------- /locales/fi_FI.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/fi_FI.mo -------------------------------------------------------------------------------- /locales/fi_FI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/fi_FI.po -------------------------------------------------------------------------------- /locales/fields.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/fields.pot -------------------------------------------------------------------------------- /locales/fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/fr_FR.mo -------------------------------------------------------------------------------- /locales/fr_FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/fr_FR.po -------------------------------------------------------------------------------- /locales/hr_HR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/hr_HR.mo -------------------------------------------------------------------------------- /locales/hr_HR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/hr_HR.po -------------------------------------------------------------------------------- /locales/it_IT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/it_IT.mo -------------------------------------------------------------------------------- /locales/it_IT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/it_IT.po -------------------------------------------------------------------------------- /locales/ja_JP.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/ja_JP.mo -------------------------------------------------------------------------------- /locales/ja_JP.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/ja_JP.po -------------------------------------------------------------------------------- /locales/ko_KR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/ko_KR.mo -------------------------------------------------------------------------------- /locales/ko_KR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/ko_KR.po -------------------------------------------------------------------------------- /locales/pl_PL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/pl_PL.mo -------------------------------------------------------------------------------- /locales/pl_PL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/pl_PL.po -------------------------------------------------------------------------------- /locales/pt_BR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/pt_BR.mo -------------------------------------------------------------------------------- /locales/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/pt_BR.po -------------------------------------------------------------------------------- /locales/pt_PT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/pt_PT.mo -------------------------------------------------------------------------------- /locales/pt_PT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/pt_PT.po -------------------------------------------------------------------------------- /locales/ro_RO.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/ro_RO.mo -------------------------------------------------------------------------------- /locales/ro_RO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/ro_RO.po -------------------------------------------------------------------------------- /locales/ru_RU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/ru_RU.mo -------------------------------------------------------------------------------- /locales/ru_RU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/ru_RU.po -------------------------------------------------------------------------------- /locales/sk_SK.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/sk_SK.mo -------------------------------------------------------------------------------- /locales/sk_SK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/sk_SK.po -------------------------------------------------------------------------------- /locales/sv_SE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/sv_SE.mo -------------------------------------------------------------------------------- /locales/sv_SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/sv_SE.po -------------------------------------------------------------------------------- /locales/tr_TR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/tr_TR.mo -------------------------------------------------------------------------------- /locales/tr_TR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/tr_TR.po -------------------------------------------------------------------------------- /locales/uk_UA.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/uk_UA.mo -------------------------------------------------------------------------------- /locales/uk_UA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/uk_UA.po -------------------------------------------------------------------------------- /locales/zh_CN.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/zh_CN.mo -------------------------------------------------------------------------------- /locales/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/locales/zh_CN.po -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/phpunit.xml -------------------------------------------------------------------------------- /pics/container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/pics/container.png -------------------------------------------------------------------------------- /pics/field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/pics/field.png -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/plugin.xml -------------------------------------------------------------------------------- /public/css/fields.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/public/css/fields.scss -------------------------------------------------------------------------------- /public/js/drag-field-row.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/public/js/drag-field-row.js -------------------------------------------------------------------------------- /public/js/modules/QuestionField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/public/js/modules/QuestionField.js -------------------------------------------------------------------------------- /public/lib/redips-drag-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/public/lib/redips-drag-min.js -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/rector.php -------------------------------------------------------------------------------- /setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/setup.php -------------------------------------------------------------------------------- /src/Controller/QuestionTypeAjaxController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/src/Controller/QuestionTypeAjaxController.php -------------------------------------------------------------------------------- /templates/container.class.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/templates/container.class.tpl -------------------------------------------------------------------------------- /templates/container_display_conditions.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/templates/container_display_conditions.html.twig -------------------------------------------------------------------------------- /templates/destinationfield.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/templates/destinationfield.html.twig -------------------------------------------------------------------------------- /templates/dropdown.class.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/templates/dropdown.class.tpl -------------------------------------------------------------------------------- /templates/fields.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/templates/fields.html.twig -------------------------------------------------------------------------------- /templates/forms/container_display_condition.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/templates/forms/container_display_condition.html.twig -------------------------------------------------------------------------------- /templates/forms/container_display_condition_so_condition.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/templates/forms/container_display_condition_so_condition.html.twig -------------------------------------------------------------------------------- /templates/forms/status_override.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/templates/forms/status_override.html.twig -------------------------------------------------------------------------------- /templates/forms/tab_container.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/templates/forms/tab_container.html.twig -------------------------------------------------------------------------------- /templates/injection.class.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/templates/injection.class.tpl -------------------------------------------------------------------------------- /templates/question_type_administration.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/templates/question_type_administration.html.twig -------------------------------------------------------------------------------- /templates/question_type_end_user.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/templates/question_type_end_user.html.twig -------------------------------------------------------------------------------- /templates/status_overrides.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/templates/status_overrides.html.twig -------------------------------------------------------------------------------- /tests/FieldTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/tests/FieldTestCase.php -------------------------------------------------------------------------------- /tests/QuestionTypeTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/tests/QuestionTypeTestCase.php -------------------------------------------------------------------------------- /tests/Units/FieldDestinationFieldTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/tests/Units/FieldDestinationFieldTest.php -------------------------------------------------------------------------------- /tests/Units/FieldQuestionTypeMigrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/tests/Units/FieldQuestionTypeMigrationTest.php -------------------------------------------------------------------------------- /tests/Units/FieldQuestionTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/tests/Units/FieldQuestionTypeTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/fixtures/formcreator.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/tests/fixtures/formcreator.sql -------------------------------------------------------------------------------- /tools/HEADER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/fields/HEAD/tools/HEADER --------------------------------------------------------------------------------