├── .atoum.php ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── Bug_report.md │ └── Feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── invite-contributors.yml ├── settings.yml └── workflows │ └── tests.yml ├── .gitignore ├── .gitlab-ci.yml ├── .travis.yml ├── .tx ├── config └── config.orig ├── .yarnrc ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── RoboFile.php ├── RoboFilePlugin.php ├── ajax ├── cancelticket.php ├── commontree.php ├── condition.php ├── dropdown_values.php ├── edit_translation.php ├── form.php ├── form_delete_target.php ├── form_duplicate_target.php ├── form_language.php ├── form_validator.php ├── formanswer.php ├── getRestrictedFormDropdownValue.php ├── get_form_tags.php ├── get_validator_itemtype_dropdown.php ├── getcaptcha.php ├── getldapvalues.php ├── gettranslationsvalues.php ├── homepage_forms.php ├── homepage_wizard.php ├── kb_category.php ├── knowbaseitem.php ├── ldap_filter.php ├── load_questions.php ├── question.php ├── question_add.php ├── question_delete.php ├── question_design.php ├── question_duplicate.php ├── question_get.php ├── question_move.php ├── question_toggle_required.php ├── question_update.php ├── section.php ├── section_add.php ├── section_delete.php ├── section_duplicate.php ├── section_move.php ├── section_update.php ├── showfields.php ├── target.php ├── target_actor.php ├── target_edit.php └── translation.php ├── composer.json ├── composer.lock ├── css ├── print_form.css ├── print_form_answer.css └── styles.scss ├── css_compiled └── remove.txt ├── data ├── font-awesome.php └── index.php ├── front ├── category.form.php ├── category.php ├── entityconfig.form.php ├── export.php ├── form.form.php ├── form.php ├── form_language.form.php ├── form_validator.form.php ├── formanswer.form.php ├── formanswer.php ├── formdisplay.php ├── formlist.php ├── issue.form.php ├── issue.php ├── item_targetticket.form.php ├── knowbaseitem.form.php ├── knowbaseitem.php ├── question.form.php ├── reservation.form.php ├── reservation.php ├── reservationitem.php ├── section.form.php ├── targetchange.form.php ├── targetproblem.form.php ├── targetticket.form.php ├── wizard.php ├── wizardfeeds.php └── wizardreminders.php ├── hook.php ├── icon.png ├── inc ├── abstractfield.class.php ├── abstractitiltarget.class.php ├── abstractquestionparameter.class.php ├── abstracttarget.class.php ├── answer.class.php ├── category.class.php ├── command │ ├── cleanticketscommand.class.php │ ├── compilescsscommand.class.php │ └── syncissuescommand.class.php ├── common.class.php ├── composite.class.php ├── condition.class.php ├── conditionnableinterface.class.php ├── conditionnabletrait.class.php ├── duplicatableinterface.class.php ├── entityconfig.class.php ├── exception │ ├── comparisonexception.class.php │ ├── exportfailureexception.class.php │ └── importfailureexception.class.php ├── exportableinterface.class.php ├── exportabletrait.class.php ├── field │ ├── actorfield.class.php │ ├── checkboxesfield.class.php │ ├── datefield.class.php │ ├── datetimefield.class.php │ ├── descriptionfield.class.php │ ├── dropdownfield.class.php │ ├── emailfield.class.php │ ├── fieldsfield.class.php │ ├── filefield.class.php │ ├── floatfield.class.php │ ├── glpiselectfield.class.php │ ├── hiddenfield.class.php │ ├── hostnamefield.class.php │ ├── integerfield.class.php │ ├── ipfield.class.php │ ├── ldapselectfield.class.php │ ├── multiselectfield.class.php │ ├── radiosfield.class.php │ ├── requesttypefield.class.php │ ├── selectfield.class.php │ ├── tagfield.class.php │ ├── textareafield.class.php │ ├── textfield.class.php │ ├── timefield.class.php │ ├── undefinedfield.class.php │ └── urgencyfield.class.php ├── fieldinterface.class.php ├── fields.class.php ├── filter │ ├── entityfilter.class.php │ └── itilcategoryfilter.class.php ├── form.class.php ├── form_group.class.php ├── form_language.class.php ├── form_profile.class.php ├── form_user.class.php ├── form_validator.class.php ├── formaccesstype.class.php ├── formanswer.class.php ├── formanswervalidation.class.php ├── formlist.class.php ├── issue.class.php ├── item_targetticket.class.php ├── itiltargetinterface.class.php ├── knowbase.class.php ├── ldapdropdown.class.php ├── linker.class.php ├── notificationtargetformanswer.class.php ├── plugintargetinterface.class.php ├── profile.class.php ├── question.class.php ├── questiondependency.class.php ├── questionfilter.class.php ├── questionparameterinterface.class.php ├── questionrange.class.php ├── questionregex.class.php ├── restrictedformcriteria.class.php ├── restrictedformdropdown.class.php ├── section.class.php ├── specificvalidator.class.php ├── supervisorvalidator.class.php ├── target_actor.class.php ├── targetchange.class.php ├── targetinterface.class.php ├── targetproblem.class.php ├── targetticket.class.php ├── translatable.class.php ├── translatableinterface.class.php └── translation.class.php ├── index.php ├── install ├── install.php ├── mysql │ ├── plugin_formcreator_2.10.0_empty.sql │ ├── plugin_formcreator_2.10.1_empty.sql │ ├── plugin_formcreator_2.10.2_empty.sql │ ├── plugin_formcreator_2.10.3_empty.sql │ ├── plugin_formcreator_2.10.4_empty.sql │ ├── plugin_formcreator_2.11.0_empty.sql │ ├── plugin_formcreator_2.11.1_empty.sql │ ├── plugin_formcreator_2.11.2_empty.sql │ ├── plugin_formcreator_2.11.3_empty.sql │ ├── plugin_formcreator_2.11.4_empty.sql │ ├── plugin_formcreator_2.12.0_empty.sql │ ├── plugin_formcreator_2.12.1_empty.sql │ ├── plugin_formcreator_2.12.2_empty.sql │ ├── plugin_formcreator_2.12.3_empty.sql │ ├── plugin_formcreator_2.12.4_empty.sql │ ├── plugin_formcreator_2.12.5_empty.sql │ ├── plugin_formcreator_2.13.0_empty.sql │ ├── plugin_formcreator_2.13.1_empty.sql │ ├── plugin_formcreator_2.13.2_empty.sql │ ├── plugin_formcreator_2.13.3_empty.sql │ ├── plugin_formcreator_2.13.4_empty.sql │ ├── plugin_formcreator_2.13.5_empty.sql │ ├── plugin_formcreator_2.13.6_empty.sql │ ├── plugin_formcreator_2.13.7_empty.sql │ ├── plugin_formcreator_2.5.0_empty.sql │ ├── plugin_formcreator_2.5.1_empty.sql │ ├── plugin_formcreator_2.5.2_empty.sql │ ├── plugin_formcreator_2.6.0_empty.sql │ ├── plugin_formcreator_2.6.1_empty.sql │ ├── plugin_formcreator_2.6.2_empty.sql │ ├── plugin_formcreator_2.6.3_empty.sql │ ├── plugin_formcreator_2.6.4_empty.sql │ ├── plugin_formcreator_2.6.5_empty.sql │ ├── plugin_formcreator_2.7.0_empty.sql │ ├── plugin_formcreator_2.8.0_empty.sql │ ├── plugin_formcreator_2.8.1_empty.sql │ ├── plugin_formcreator_2.8.2_empty.sql │ ├── plugin_formcreator_2.8.3_empty.sql │ ├── plugin_formcreator_2.8.4_empty.sql │ ├── plugin_formcreator_2.8.5_empty.sql │ ├── plugin_formcreator_2.8.6_empty.sql │ ├── plugin_formcreator_2.9.0_empty.sql │ ├── plugin_formcreator_2.9.1_empty.sql │ ├── plugin_formcreator_2.9.2_empty.sql │ └── plugin_formcreator_empty.sql ├── upgrade_to_2.10.2.php ├── upgrade_to_2.10.php ├── upgrade_to_2.11.3.php ├── upgrade_to_2.11.php ├── upgrade_to_2.12.1.php ├── upgrade_to_2.12.5.php ├── upgrade_to_2.12.php ├── upgrade_to_2.13.1.php ├── upgrade_to_2.13.3.php ├── upgrade_to_2.13.4.php ├── upgrade_to_2.13.5.php ├── upgrade_to_2.13.6.php ├── upgrade_to_2.13.7.php ├── upgrade_to_2.13.php ├── upgrade_to_2.14.php ├── upgrade_to_2.6.1.php ├── upgrade_to_2.6.3.php ├── upgrade_to_2.6.php ├── upgrade_to_2.7.php ├── upgrade_to_2.8.1.php ├── upgrade_to_2.8.php └── upgrade_to_2.9.php ├── js ├── scripts.js └── tag.js ├── locales ├── ca_ES.mo ├── ca_ES.po ├── cs_CZ.mo ├── cs_CZ.po ├── de_AT.mo ├── de_DE.mo ├── de_DE.po ├── en_GB.mo ├── en_GB.po ├── en_US.mo ├── es_419.mo ├── es_AR.mo ├── es_CL.mo ├── es_CO.mo ├── es_ES.mo ├── es_ES.po ├── es_MX.mo ├── es_VE.mo ├── es_VE.po ├── fi_FI.mo ├── fr_CA.mo ├── fr_CA.po ├── fr_FR.mo ├── fr_FR.po ├── glpi.pot ├── hr_HR.mo ├── hr_HR.po ├── hu_HU.mo ├── it_IT.mo ├── ko_KR.mo ├── ko_KR.po ├── lv_LV.mo ├── nb_NO.mo ├── nl_BE.mo ├── nl_NL.mo ├── nl_NL.po ├── pl_PL.mo ├── pl_PL.po ├── pt_BR.mo ├── pt_BR.po ├── pt_PT.mo ├── ro_RO.mo ├── ru_RU.mo ├── ru_RU.po ├── sk_SK.mo ├── sk_SK.po ├── sr_RS.mo ├── tr_TR.mo ├── tr_TR.po └── uk_UA.mo ├── package.json ├── phpstan.neon ├── pics ├── accepted.png ├── check.png ├── clear-search.png ├── clone.png ├── corner-handle.png ├── delete.png ├── edit.png ├── faq.png ├── form.png ├── import.png ├── pics_chevron-up.png ├── refused.png ├── search.png └── waiting.png ├── plugin.xml ├── screenshot_1.png ├── screenshot_2.png ├── screenshot_3.png ├── setup.php ├── templates ├── components │ ├── card │ │ ├── formanswer.requester-last.html.twig │ │ └── formanswer.validator-last.html.twig │ └── form │ │ ├── condition.html.twig │ │ ├── fields_macros.html.twig │ │ ├── form_accesstype.html.twig │ │ ├── form_accesstype.massive.html.twig │ │ ├── form_taglist.html.twig │ │ ├── form_validator.validator_type.html.twig │ │ ├── formanswer.validation.html.twig │ │ ├── question_design.html.twig │ │ └── section_design.html.twig ├── field │ ├── actorfield.html.twig │ ├── checkboxesfield.html.twig │ ├── datefield.html.twig │ ├── datetimefield.html.twig │ ├── descriptionfield.html.twig │ ├── dropdownfield.filter.html.twig │ ├── dropdownfield.html.twig │ ├── emailfield.html.twig │ ├── fieldsfield.html.twig │ ├── filefield.html.twig │ ├── floatfield.html.twig │ ├── glpiselectfield.filter.html.twig │ ├── glpiselectfield.html.twig │ ├── hiddenfield.html.twig │ ├── hostnamefield.html.twig │ ├── integerfield.html.twig │ ├── ipfield.html.twig │ ├── ldapselectfield.html.twig │ ├── multiselectfield.html.twig │ ├── radiosfield.html.twig │ ├── requesttypefield.html.twig │ ├── selectfield.html.twig │ ├── tagfield.html.twig │ ├── textareafield.html.twig │ ├── textfield.html.twig │ ├── timefield.html.twig │ ├── undefinedfield.html.twig │ └── urgencyfield.html.twig ├── pages │ ├── condition_for_item.html.twig │ ├── form.formanswer.html.twig │ ├── form.html.twig │ ├── form.validation.html.twig │ ├── form_accesstype.html.twig │ ├── form_formanswerproperties.html.twig │ ├── form_targets.html.twig │ ├── question.condition.html.twig │ ├── question.html.twig │ ├── question_for_form.html.twig │ ├── section.html.twig │ ├── targetchange.html.twig │ ├── targetproblem.html.twig │ ├── targetticket.html.twig │ └── userform.html.twig └── questionparameter │ ├── filter.html.twig │ ├── range.html.twig │ └── regex.html.twig ├── tests ├── 1-install │ └── Config.php ├── 2-integration │ ├── PluginFormcreatorFormAnswer.php │ ├── PluginFormcreatorIssue.php │ ├── PluginFormcreatorTargetChange.php │ ├── PluginFormcreatorTargetProblem.php │ └── PluginFormcreatorTargetTicket.php ├── 3-unit │ ├── GlpiPlugin │ │ └── Formcreator │ │ │ └── Field │ │ │ ├── ActorField.php │ │ │ ├── CheckboxesField.php │ │ │ ├── DateField.php │ │ │ ├── DatetimeField.php │ │ │ ├── DescriptionField.php │ │ │ ├── DropdownField.php │ │ │ ├── EmailField.php │ │ │ ├── FileField.class.php │ │ │ ├── FloatField.php │ │ │ ├── GlpiSelectField.php │ │ │ ├── HiddenField.php │ │ │ ├── HostnameField.php │ │ │ ├── IntegerField.php │ │ │ ├── IpField.php │ │ │ ├── LdapSelectField.php │ │ │ ├── MultiselectField.php │ │ │ ├── RadiosField.php │ │ │ ├── SelectField.php │ │ │ ├── TagField.php │ │ │ ├── TextField.php │ │ │ ├── TextareaField.php │ │ │ └── TimeField.php │ ├── PluginFormcreatorAnswer.php │ ├── PluginFormcreatorCategory.php │ ├── PluginFormcreatorCommon.php │ ├── PluginFormcreatorCondition.php │ ├── PluginFormcreatorEntityConfig.php │ ├── PluginFormcreatorFields.php │ ├── PluginFormcreatorForm.php │ ├── PluginFormcreatorFormAccessType.php │ ├── PluginFormcreatorFormAnswer.php │ ├── PluginFormcreatorFormList.php │ ├── PluginFormcreatorForm_Language.php │ ├── PluginFormcreatorForm_Profile.php │ ├── PluginFormcreatorForm_Validator.php │ ├── PluginFormcreatorFormanswerValidation.php │ ├── PluginFormcreatorIssue.php │ ├── PluginFormcreatorQuestion.php │ ├── PluginFormcreatorQuestionDependency.php │ ├── PluginFormcreatorQuestionRange.php │ ├── PluginFormcreatorQuestionRegex.php │ ├── PluginFormcreatorSection.php │ ├── PluginFormcreatorTargetChange.php │ ├── PluginFormcreatorTargetProblem.php │ ├── PluginFormcreatorTargetTicket.php │ ├── PluginFormcreatorTarget_Actor.php │ └── PluginFormcreatorTranslation.php ├── 4-functional │ ├── Central.php │ ├── Glpi │ │ └── Plugin │ │ │ └── Formcreator │ │ │ └── Field │ │ │ ├── ActorField.class.php │ │ │ ├── CheckboxesField.php │ │ │ ├── DateField.php │ │ │ ├── DatetimeField.php │ │ │ ├── DropdownField.php │ │ │ ├── EmailField.php │ │ │ ├── FileField.php │ │ │ ├── FloatField.php │ │ │ ├── GlpiselectField.php │ │ │ ├── HiddenField.php │ │ │ ├── IntegerField.php │ │ │ ├── LdapSelectField.php │ │ │ ├── MultiselectField.php │ │ │ ├── RadiosField.php │ │ │ ├── RequesttypeField.php │ │ │ ├── SelectField.php │ │ │ ├── TextField.php │ │ │ ├── TextareaField.php │ │ │ ├── TimeField.php │ │ │ └── UrgencyField.php │ ├── PluginFormcreatorForm.php │ ├── PluginFormcreatorQuestion.php │ ├── PluginFormcreatorSection.php │ └── testCentralHasTab.js ├── 5-uninstall │ └── Config.php ├── before_script.sh ├── bootstrap.php ├── composer.sh ├── docker_install.sh ├── fixture │ ├── PluginFormcreatorDependentField.php │ ├── all_question_types_form.json │ ├── picture.png │ └── upload.txt ├── functionalTest.dist.js ├── functionalTest.json ├── logs │ └── .empty ├── plugin_fields_disable_glpi_max_version.diff ├── plugin_formcreator_config_2.5.0.sql ├── plugin_formcreator_empty_2.5.0.sql ├── plugin_tag_disable_glpi_max_version.diff ├── router.php ├── rulest.xml ├── script-functions.sh ├── script-specific-functions.sh ├── script.sh ├── src │ ├── AbstractItilTargetTestCase.php │ ├── CommonAbstractFieldTestCase.php │ ├── CommonBrowsing.php │ ├── CommonFunctionalTestCase.php │ ├── CommonQuestionTest.php │ ├── CommonTargetTestCase.php │ └── CommonTestCase.php ├── suite-robo │ ├── ConventionalChangelog.php │ ├── Git.php │ └── Semver.php └── yarn.sh ├── tools ├── HEADER └── extract_template.sh └── yarn.lock /.atoum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/.atoum.php -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/.github/ISSUE_TEMPLATE/Bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/.github/ISSUE_TEMPLATE/Feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/invite-contributors.yml: -------------------------------------------------------------------------------- 1 | isOutside: true 2 | # Team Name 3 | contributors -------------------------------------------------------------------------------- /.github/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/.github/settings.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/.travis.yml -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/.tx/config -------------------------------------------------------------------------------- /.tx/config.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/.tx/config.orig -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- 1 | --modules-folder lib/ 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/README.md -------------------------------------------------------------------------------- /RoboFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/RoboFile.php -------------------------------------------------------------------------------- /RoboFilePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/RoboFilePlugin.php -------------------------------------------------------------------------------- /ajax/cancelticket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/cancelticket.php -------------------------------------------------------------------------------- /ajax/commontree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/commontree.php -------------------------------------------------------------------------------- /ajax/condition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/condition.php -------------------------------------------------------------------------------- /ajax/dropdown_values.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/dropdown_values.php -------------------------------------------------------------------------------- /ajax/edit_translation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/edit_translation.php -------------------------------------------------------------------------------- /ajax/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/form.php -------------------------------------------------------------------------------- /ajax/form_delete_target.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/form_delete_target.php -------------------------------------------------------------------------------- /ajax/form_duplicate_target.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/form_duplicate_target.php -------------------------------------------------------------------------------- /ajax/form_language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/form_language.php -------------------------------------------------------------------------------- /ajax/form_validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/form_validator.php -------------------------------------------------------------------------------- /ajax/formanswer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/formanswer.php -------------------------------------------------------------------------------- /ajax/getRestrictedFormDropdownValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/getRestrictedFormDropdownValue.php -------------------------------------------------------------------------------- /ajax/get_form_tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/get_form_tags.php -------------------------------------------------------------------------------- /ajax/get_validator_itemtype_dropdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/get_validator_itemtype_dropdown.php -------------------------------------------------------------------------------- /ajax/getcaptcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/getcaptcha.php -------------------------------------------------------------------------------- /ajax/getldapvalues.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/getldapvalues.php -------------------------------------------------------------------------------- /ajax/gettranslationsvalues.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/gettranslationsvalues.php -------------------------------------------------------------------------------- /ajax/homepage_forms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/homepage_forms.php -------------------------------------------------------------------------------- /ajax/homepage_wizard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/homepage_wizard.php -------------------------------------------------------------------------------- /ajax/kb_category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/kb_category.php -------------------------------------------------------------------------------- /ajax/knowbaseitem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/knowbaseitem.php -------------------------------------------------------------------------------- /ajax/ldap_filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/ldap_filter.php -------------------------------------------------------------------------------- /ajax/load_questions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/load_questions.php -------------------------------------------------------------------------------- /ajax/question.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/question.php -------------------------------------------------------------------------------- /ajax/question_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/question_add.php -------------------------------------------------------------------------------- /ajax/question_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/question_delete.php -------------------------------------------------------------------------------- /ajax/question_design.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/question_design.php -------------------------------------------------------------------------------- /ajax/question_duplicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/question_duplicate.php -------------------------------------------------------------------------------- /ajax/question_get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/question_get.php -------------------------------------------------------------------------------- /ajax/question_move.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/question_move.php -------------------------------------------------------------------------------- /ajax/question_toggle_required.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/question_toggle_required.php -------------------------------------------------------------------------------- /ajax/question_update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/question_update.php -------------------------------------------------------------------------------- /ajax/section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/section.php -------------------------------------------------------------------------------- /ajax/section_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/section_add.php -------------------------------------------------------------------------------- /ajax/section_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/section_delete.php -------------------------------------------------------------------------------- /ajax/section_duplicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/section_duplicate.php -------------------------------------------------------------------------------- /ajax/section_move.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/section_move.php -------------------------------------------------------------------------------- /ajax/section_update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/section_update.php -------------------------------------------------------------------------------- /ajax/showfields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/showfields.php -------------------------------------------------------------------------------- /ajax/target.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/target.php -------------------------------------------------------------------------------- /ajax/target_actor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/target_actor.php -------------------------------------------------------------------------------- /ajax/target_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/target_edit.php -------------------------------------------------------------------------------- /ajax/translation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/ajax/translation.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/composer.lock -------------------------------------------------------------------------------- /css/print_form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/css/print_form.css -------------------------------------------------------------------------------- /css/print_form_answer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/css/print_form_answer.css -------------------------------------------------------------------------------- /css/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/css/styles.scss -------------------------------------------------------------------------------- /css_compiled/remove.txt: -------------------------------------------------------------------------------- 1 | This file may be safely removed -------------------------------------------------------------------------------- /data/font-awesome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/data/font-awesome.php -------------------------------------------------------------------------------- /data/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/data/index.php -------------------------------------------------------------------------------- /front/category.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/front/category.form.php -------------------------------------------------------------------------------- /front/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/front/category.php -------------------------------------------------------------------------------- /front/entityconfig.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/front/entityconfig.form.php -------------------------------------------------------------------------------- /front/export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/front/export.php -------------------------------------------------------------------------------- /front/form.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/front/form.form.php -------------------------------------------------------------------------------- /front/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/front/form.php -------------------------------------------------------------------------------- /front/form_language.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/front/form_language.form.php -------------------------------------------------------------------------------- /front/form_validator.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/front/form_validator.form.php -------------------------------------------------------------------------------- /front/formanswer.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/front/formanswer.form.php -------------------------------------------------------------------------------- /front/formanswer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/front/formanswer.php -------------------------------------------------------------------------------- /front/formdisplay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/front/formdisplay.php -------------------------------------------------------------------------------- /front/formlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/front/formlist.php -------------------------------------------------------------------------------- /front/issue.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/front/issue.form.php -------------------------------------------------------------------------------- /front/issue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/front/issue.php -------------------------------------------------------------------------------- /front/item_targetticket.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/front/item_targetticket.form.php -------------------------------------------------------------------------------- /front/knowbaseitem.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/front/knowbaseitem.form.php -------------------------------------------------------------------------------- /front/knowbaseitem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/front/knowbaseitem.php -------------------------------------------------------------------------------- /front/question.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/front/question.form.php -------------------------------------------------------------------------------- /front/reservation.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/front/reservation.form.php -------------------------------------------------------------------------------- /front/reservation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/front/reservation.php -------------------------------------------------------------------------------- /front/reservationitem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/front/reservationitem.php -------------------------------------------------------------------------------- /front/section.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/front/section.form.php -------------------------------------------------------------------------------- /front/targetchange.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/front/targetchange.form.php -------------------------------------------------------------------------------- /front/targetproblem.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/front/targetproblem.form.php -------------------------------------------------------------------------------- /front/targetticket.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/front/targetticket.form.php -------------------------------------------------------------------------------- /front/wizard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/front/wizard.php -------------------------------------------------------------------------------- /front/wizardfeeds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/front/wizardfeeds.php -------------------------------------------------------------------------------- /front/wizardreminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/front/wizardreminders.php -------------------------------------------------------------------------------- /hook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/hook.php -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/icon.png -------------------------------------------------------------------------------- /inc/abstractfield.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/abstractfield.class.php -------------------------------------------------------------------------------- /inc/abstractitiltarget.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/abstractitiltarget.class.php -------------------------------------------------------------------------------- /inc/abstractquestionparameter.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/abstractquestionparameter.class.php -------------------------------------------------------------------------------- /inc/abstracttarget.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/abstracttarget.class.php -------------------------------------------------------------------------------- /inc/answer.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/answer.class.php -------------------------------------------------------------------------------- /inc/category.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/category.class.php -------------------------------------------------------------------------------- /inc/command/cleanticketscommand.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/command/cleanticketscommand.class.php -------------------------------------------------------------------------------- /inc/command/compilescsscommand.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/command/compilescsscommand.class.php -------------------------------------------------------------------------------- /inc/command/syncissuescommand.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/command/syncissuescommand.class.php -------------------------------------------------------------------------------- /inc/common.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/common.class.php -------------------------------------------------------------------------------- /inc/composite.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/composite.class.php -------------------------------------------------------------------------------- /inc/condition.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/condition.class.php -------------------------------------------------------------------------------- /inc/conditionnableinterface.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/conditionnableinterface.class.php -------------------------------------------------------------------------------- /inc/conditionnabletrait.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/conditionnabletrait.class.php -------------------------------------------------------------------------------- /inc/duplicatableinterface.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/duplicatableinterface.class.php -------------------------------------------------------------------------------- /inc/entityconfig.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/entityconfig.class.php -------------------------------------------------------------------------------- /inc/exception/comparisonexception.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/exception/comparisonexception.class.php -------------------------------------------------------------------------------- /inc/exception/exportfailureexception.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/exception/exportfailureexception.class.php -------------------------------------------------------------------------------- /inc/exception/importfailureexception.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/exception/importfailureexception.class.php -------------------------------------------------------------------------------- /inc/exportableinterface.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/exportableinterface.class.php -------------------------------------------------------------------------------- /inc/exportabletrait.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/exportabletrait.class.php -------------------------------------------------------------------------------- /inc/field/actorfield.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/field/actorfield.class.php -------------------------------------------------------------------------------- /inc/field/checkboxesfield.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/field/checkboxesfield.class.php -------------------------------------------------------------------------------- /inc/field/datefield.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/field/datefield.class.php -------------------------------------------------------------------------------- /inc/field/datetimefield.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/field/datetimefield.class.php -------------------------------------------------------------------------------- /inc/field/descriptionfield.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/field/descriptionfield.class.php -------------------------------------------------------------------------------- /inc/field/dropdownfield.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/field/dropdownfield.class.php -------------------------------------------------------------------------------- /inc/field/emailfield.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/field/emailfield.class.php -------------------------------------------------------------------------------- /inc/field/fieldsfield.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/field/fieldsfield.class.php -------------------------------------------------------------------------------- /inc/field/filefield.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/field/filefield.class.php -------------------------------------------------------------------------------- /inc/field/floatfield.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/field/floatfield.class.php -------------------------------------------------------------------------------- /inc/field/glpiselectfield.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/field/glpiselectfield.class.php -------------------------------------------------------------------------------- /inc/field/hiddenfield.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/field/hiddenfield.class.php -------------------------------------------------------------------------------- /inc/field/hostnamefield.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/field/hostnamefield.class.php -------------------------------------------------------------------------------- /inc/field/integerfield.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/field/integerfield.class.php -------------------------------------------------------------------------------- /inc/field/ipfield.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/field/ipfield.class.php -------------------------------------------------------------------------------- /inc/field/ldapselectfield.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/field/ldapselectfield.class.php -------------------------------------------------------------------------------- /inc/field/multiselectfield.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/field/multiselectfield.class.php -------------------------------------------------------------------------------- /inc/field/radiosfield.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/field/radiosfield.class.php -------------------------------------------------------------------------------- /inc/field/requesttypefield.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/field/requesttypefield.class.php -------------------------------------------------------------------------------- /inc/field/selectfield.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/field/selectfield.class.php -------------------------------------------------------------------------------- /inc/field/tagfield.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/field/tagfield.class.php -------------------------------------------------------------------------------- /inc/field/textareafield.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/field/textareafield.class.php -------------------------------------------------------------------------------- /inc/field/textfield.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/field/textfield.class.php -------------------------------------------------------------------------------- /inc/field/timefield.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/field/timefield.class.php -------------------------------------------------------------------------------- /inc/field/undefinedfield.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/field/undefinedfield.class.php -------------------------------------------------------------------------------- /inc/field/urgencyfield.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/field/urgencyfield.class.php -------------------------------------------------------------------------------- /inc/fieldinterface.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/fieldinterface.class.php -------------------------------------------------------------------------------- /inc/fields.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/fields.class.php -------------------------------------------------------------------------------- /inc/filter/entityfilter.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/filter/entityfilter.class.php -------------------------------------------------------------------------------- /inc/filter/itilcategoryfilter.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/filter/itilcategoryfilter.class.php -------------------------------------------------------------------------------- /inc/form.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/form.class.php -------------------------------------------------------------------------------- /inc/form_group.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/form_group.class.php -------------------------------------------------------------------------------- /inc/form_language.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/form_language.class.php -------------------------------------------------------------------------------- /inc/form_profile.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/form_profile.class.php -------------------------------------------------------------------------------- /inc/form_user.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/form_user.class.php -------------------------------------------------------------------------------- /inc/form_validator.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/form_validator.class.php -------------------------------------------------------------------------------- /inc/formaccesstype.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/formaccesstype.class.php -------------------------------------------------------------------------------- /inc/formanswer.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/formanswer.class.php -------------------------------------------------------------------------------- /inc/formanswervalidation.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/formanswervalidation.class.php -------------------------------------------------------------------------------- /inc/formlist.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/formlist.class.php -------------------------------------------------------------------------------- /inc/issue.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/issue.class.php -------------------------------------------------------------------------------- /inc/item_targetticket.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/item_targetticket.class.php -------------------------------------------------------------------------------- /inc/itiltargetinterface.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/itiltargetinterface.class.php -------------------------------------------------------------------------------- /inc/knowbase.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/knowbase.class.php -------------------------------------------------------------------------------- /inc/ldapdropdown.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/ldapdropdown.class.php -------------------------------------------------------------------------------- /inc/linker.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/linker.class.php -------------------------------------------------------------------------------- /inc/notificationtargetformanswer.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/notificationtargetformanswer.class.php -------------------------------------------------------------------------------- /inc/plugintargetinterface.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/plugintargetinterface.class.php -------------------------------------------------------------------------------- /inc/profile.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/profile.class.php -------------------------------------------------------------------------------- /inc/question.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/question.class.php -------------------------------------------------------------------------------- /inc/questiondependency.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/questiondependency.class.php -------------------------------------------------------------------------------- /inc/questionfilter.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/questionfilter.class.php -------------------------------------------------------------------------------- /inc/questionparameterinterface.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/questionparameterinterface.class.php -------------------------------------------------------------------------------- /inc/questionrange.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/questionrange.class.php -------------------------------------------------------------------------------- /inc/questionregex.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/questionregex.class.php -------------------------------------------------------------------------------- /inc/restrictedformcriteria.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/restrictedformcriteria.class.php -------------------------------------------------------------------------------- /inc/restrictedformdropdown.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/restrictedformdropdown.class.php -------------------------------------------------------------------------------- /inc/section.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/section.class.php -------------------------------------------------------------------------------- /inc/specificvalidator.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/specificvalidator.class.php -------------------------------------------------------------------------------- /inc/supervisorvalidator.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/supervisorvalidator.class.php -------------------------------------------------------------------------------- /inc/target_actor.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/target_actor.class.php -------------------------------------------------------------------------------- /inc/targetchange.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/targetchange.class.php -------------------------------------------------------------------------------- /inc/targetinterface.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/targetinterface.class.php -------------------------------------------------------------------------------- /inc/targetproblem.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/targetproblem.class.php -------------------------------------------------------------------------------- /inc/targetticket.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/targetticket.class.php -------------------------------------------------------------------------------- /inc/translatable.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/translatable.class.php -------------------------------------------------------------------------------- /inc/translatableinterface.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/translatableinterface.class.php -------------------------------------------------------------------------------- /inc/translation.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/inc/translation.class.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/index.php -------------------------------------------------------------------------------- /install/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/install.php -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.10.0_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.10.0_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.10.1_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.10.1_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.10.2_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.10.2_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.10.3_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.10.3_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.10.4_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.10.4_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.11.0_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.11.0_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.11.1_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.11.1_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.11.2_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.11.2_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.11.3_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.11.3_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.11.4_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.11.4_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.12.0_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.12.0_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.12.1_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.12.1_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.12.2_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.12.2_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.12.3_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.12.3_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.12.4_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.12.4_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.12.5_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.12.5_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.13.0_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.13.0_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.13.1_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.13.1_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.13.2_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.13.2_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.13.3_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.13.3_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.13.4_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.13.4_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.13.5_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.13.5_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.13.6_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.13.6_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.13.7_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.13.7_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.5.0_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.5.0_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.5.1_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.5.1_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.5.2_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.5.2_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.6.0_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.6.0_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.6.1_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.6.1_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.6.2_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.6.2_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.6.3_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.6.3_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.6.4_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.6.4_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.6.5_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.6.5_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.7.0_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.7.0_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.8.0_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.8.0_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.8.1_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.8.1_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.8.2_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.8.2_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.8.3_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.8.3_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.8.4_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.8.4_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.8.5_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.8.5_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.8.6_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.8.6_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.9.0_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.9.0_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.9.1_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.9.1_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_2.9.2_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_2.9.2_empty.sql -------------------------------------------------------------------------------- /install/mysql/plugin_formcreator_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/mysql/plugin_formcreator_empty.sql -------------------------------------------------------------------------------- /install/upgrade_to_2.10.2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/upgrade_to_2.10.2.php -------------------------------------------------------------------------------- /install/upgrade_to_2.10.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/upgrade_to_2.10.php -------------------------------------------------------------------------------- /install/upgrade_to_2.11.3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/upgrade_to_2.11.3.php -------------------------------------------------------------------------------- /install/upgrade_to_2.11.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/upgrade_to_2.11.php -------------------------------------------------------------------------------- /install/upgrade_to_2.12.1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/upgrade_to_2.12.1.php -------------------------------------------------------------------------------- /install/upgrade_to_2.12.5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/upgrade_to_2.12.5.php -------------------------------------------------------------------------------- /install/upgrade_to_2.12.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/upgrade_to_2.12.php -------------------------------------------------------------------------------- /install/upgrade_to_2.13.1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/upgrade_to_2.13.1.php -------------------------------------------------------------------------------- /install/upgrade_to_2.13.3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/upgrade_to_2.13.3.php -------------------------------------------------------------------------------- /install/upgrade_to_2.13.4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/upgrade_to_2.13.4.php -------------------------------------------------------------------------------- /install/upgrade_to_2.13.5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/upgrade_to_2.13.5.php -------------------------------------------------------------------------------- /install/upgrade_to_2.13.6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/upgrade_to_2.13.6.php -------------------------------------------------------------------------------- /install/upgrade_to_2.13.7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/upgrade_to_2.13.7.php -------------------------------------------------------------------------------- /install/upgrade_to_2.13.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/upgrade_to_2.13.php -------------------------------------------------------------------------------- /install/upgrade_to_2.14.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/upgrade_to_2.14.php -------------------------------------------------------------------------------- /install/upgrade_to_2.6.1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/upgrade_to_2.6.1.php -------------------------------------------------------------------------------- /install/upgrade_to_2.6.3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/upgrade_to_2.6.3.php -------------------------------------------------------------------------------- /install/upgrade_to_2.6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/upgrade_to_2.6.php -------------------------------------------------------------------------------- /install/upgrade_to_2.7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/upgrade_to_2.7.php -------------------------------------------------------------------------------- /install/upgrade_to_2.8.1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/upgrade_to_2.8.1.php -------------------------------------------------------------------------------- /install/upgrade_to_2.8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/upgrade_to_2.8.php -------------------------------------------------------------------------------- /install/upgrade_to_2.9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/install/upgrade_to_2.9.php -------------------------------------------------------------------------------- /js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/js/scripts.js -------------------------------------------------------------------------------- /js/tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/js/tag.js -------------------------------------------------------------------------------- /locales/ca_ES.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/ca_ES.mo -------------------------------------------------------------------------------- /locales/ca_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/ca_ES.po -------------------------------------------------------------------------------- /locales/cs_CZ.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/cs_CZ.mo -------------------------------------------------------------------------------- /locales/cs_CZ.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/cs_CZ.po -------------------------------------------------------------------------------- /locales/de_AT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/de_AT.mo -------------------------------------------------------------------------------- /locales/de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/de_DE.mo -------------------------------------------------------------------------------- /locales/de_DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/de_DE.po -------------------------------------------------------------------------------- /locales/en_GB.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/en_GB.mo -------------------------------------------------------------------------------- /locales/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/en_GB.po -------------------------------------------------------------------------------- /locales/en_US.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/en_US.mo -------------------------------------------------------------------------------- /locales/es_419.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/es_419.mo -------------------------------------------------------------------------------- /locales/es_AR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/es_AR.mo -------------------------------------------------------------------------------- /locales/es_CL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/es_CL.mo -------------------------------------------------------------------------------- /locales/es_CO.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/es_CO.mo -------------------------------------------------------------------------------- /locales/es_ES.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/es_ES.mo -------------------------------------------------------------------------------- /locales/es_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/es_ES.po -------------------------------------------------------------------------------- /locales/es_MX.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/es_MX.mo -------------------------------------------------------------------------------- /locales/es_VE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/es_VE.mo -------------------------------------------------------------------------------- /locales/es_VE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/es_VE.po -------------------------------------------------------------------------------- /locales/fi_FI.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/fi_FI.mo -------------------------------------------------------------------------------- /locales/fr_CA.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/fr_CA.mo -------------------------------------------------------------------------------- /locales/fr_CA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/fr_CA.po -------------------------------------------------------------------------------- /locales/fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/fr_FR.mo -------------------------------------------------------------------------------- /locales/fr_FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/fr_FR.po -------------------------------------------------------------------------------- /locales/glpi.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/glpi.pot -------------------------------------------------------------------------------- /locales/hr_HR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/hr_HR.mo -------------------------------------------------------------------------------- /locales/hr_HR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/hr_HR.po -------------------------------------------------------------------------------- /locales/hu_HU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/hu_HU.mo -------------------------------------------------------------------------------- /locales/it_IT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/it_IT.mo -------------------------------------------------------------------------------- /locales/ko_KR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/ko_KR.mo -------------------------------------------------------------------------------- /locales/ko_KR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/ko_KR.po -------------------------------------------------------------------------------- /locales/lv_LV.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/lv_LV.mo -------------------------------------------------------------------------------- /locales/nb_NO.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/nb_NO.mo -------------------------------------------------------------------------------- /locales/nl_BE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/nl_BE.mo -------------------------------------------------------------------------------- /locales/nl_NL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/nl_NL.mo -------------------------------------------------------------------------------- /locales/nl_NL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/nl_NL.po -------------------------------------------------------------------------------- /locales/pl_PL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/pl_PL.mo -------------------------------------------------------------------------------- /locales/pl_PL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/pl_PL.po -------------------------------------------------------------------------------- /locales/pt_BR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/pt_BR.mo -------------------------------------------------------------------------------- /locales/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/pt_BR.po -------------------------------------------------------------------------------- /locales/pt_PT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/pt_PT.mo -------------------------------------------------------------------------------- /locales/ro_RO.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/ro_RO.mo -------------------------------------------------------------------------------- /locales/ru_RU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/ru_RU.mo -------------------------------------------------------------------------------- /locales/ru_RU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/ru_RU.po -------------------------------------------------------------------------------- /locales/sk_SK.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/sk_SK.mo -------------------------------------------------------------------------------- /locales/sk_SK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/sk_SK.po -------------------------------------------------------------------------------- /locales/sr_RS.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/sr_RS.mo -------------------------------------------------------------------------------- /locales/tr_TR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/tr_TR.mo -------------------------------------------------------------------------------- /locales/tr_TR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/tr_TR.po -------------------------------------------------------------------------------- /locales/uk_UA.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/locales/uk_UA.mo -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/package.json -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/phpstan.neon -------------------------------------------------------------------------------- /pics/accepted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/pics/accepted.png -------------------------------------------------------------------------------- /pics/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/pics/check.png -------------------------------------------------------------------------------- /pics/clear-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/pics/clear-search.png -------------------------------------------------------------------------------- /pics/clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/pics/clone.png -------------------------------------------------------------------------------- /pics/corner-handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/pics/corner-handle.png -------------------------------------------------------------------------------- /pics/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/pics/delete.png -------------------------------------------------------------------------------- /pics/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/pics/edit.png -------------------------------------------------------------------------------- /pics/faq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/pics/faq.png -------------------------------------------------------------------------------- /pics/form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/pics/form.png -------------------------------------------------------------------------------- /pics/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/pics/import.png -------------------------------------------------------------------------------- /pics/pics_chevron-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/pics/pics_chevron-up.png -------------------------------------------------------------------------------- /pics/refused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/pics/refused.png -------------------------------------------------------------------------------- /pics/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/pics/search.png -------------------------------------------------------------------------------- /pics/waiting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/pics/waiting.png -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/plugin.xml -------------------------------------------------------------------------------- /screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/screenshot_1.png -------------------------------------------------------------------------------- /screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/screenshot_2.png -------------------------------------------------------------------------------- /screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/screenshot_3.png -------------------------------------------------------------------------------- /setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/setup.php -------------------------------------------------------------------------------- /templates/components/card/formanswer.requester-last.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/components/card/formanswer.requester-last.html.twig -------------------------------------------------------------------------------- /templates/components/card/formanswer.validator-last.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/components/card/formanswer.validator-last.html.twig -------------------------------------------------------------------------------- /templates/components/form/condition.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/components/form/condition.html.twig -------------------------------------------------------------------------------- /templates/components/form/fields_macros.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/components/form/fields_macros.html.twig -------------------------------------------------------------------------------- /templates/components/form/form_accesstype.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/components/form/form_accesstype.html.twig -------------------------------------------------------------------------------- /templates/components/form/form_accesstype.massive.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/components/form/form_accesstype.massive.html.twig -------------------------------------------------------------------------------- /templates/components/form/form_taglist.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/components/form/form_taglist.html.twig -------------------------------------------------------------------------------- /templates/components/form/form_validator.validator_type.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/components/form/form_validator.validator_type.html.twig -------------------------------------------------------------------------------- /templates/components/form/formanswer.validation.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/components/form/formanswer.validation.html.twig -------------------------------------------------------------------------------- /templates/components/form/question_design.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/components/form/question_design.html.twig -------------------------------------------------------------------------------- /templates/components/form/section_design.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/components/form/section_design.html.twig -------------------------------------------------------------------------------- /templates/field/actorfield.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/field/actorfield.html.twig -------------------------------------------------------------------------------- /templates/field/checkboxesfield.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/field/checkboxesfield.html.twig -------------------------------------------------------------------------------- /templates/field/datefield.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/field/datefield.html.twig -------------------------------------------------------------------------------- /templates/field/datetimefield.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/field/datetimefield.html.twig -------------------------------------------------------------------------------- /templates/field/descriptionfield.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/field/descriptionfield.html.twig -------------------------------------------------------------------------------- /templates/field/dropdownfield.filter.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/field/dropdownfield.filter.html.twig -------------------------------------------------------------------------------- /templates/field/dropdownfield.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/field/dropdownfield.html.twig -------------------------------------------------------------------------------- /templates/field/emailfield.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/field/emailfield.html.twig -------------------------------------------------------------------------------- /templates/field/fieldsfield.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/field/fieldsfield.html.twig -------------------------------------------------------------------------------- /templates/field/filefield.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/field/filefield.html.twig -------------------------------------------------------------------------------- /templates/field/floatfield.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/field/floatfield.html.twig -------------------------------------------------------------------------------- /templates/field/glpiselectfield.filter.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/field/glpiselectfield.filter.html.twig -------------------------------------------------------------------------------- /templates/field/glpiselectfield.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/field/glpiselectfield.html.twig -------------------------------------------------------------------------------- /templates/field/hiddenfield.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/field/hiddenfield.html.twig -------------------------------------------------------------------------------- /templates/field/hostnamefield.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/field/hostnamefield.html.twig -------------------------------------------------------------------------------- /templates/field/integerfield.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/field/integerfield.html.twig -------------------------------------------------------------------------------- /templates/field/ipfield.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/field/ipfield.html.twig -------------------------------------------------------------------------------- /templates/field/ldapselectfield.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/field/ldapselectfield.html.twig -------------------------------------------------------------------------------- /templates/field/multiselectfield.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/field/multiselectfield.html.twig -------------------------------------------------------------------------------- /templates/field/radiosfield.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/field/radiosfield.html.twig -------------------------------------------------------------------------------- /templates/field/requesttypefield.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/field/requesttypefield.html.twig -------------------------------------------------------------------------------- /templates/field/selectfield.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/field/selectfield.html.twig -------------------------------------------------------------------------------- /templates/field/tagfield.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/field/tagfield.html.twig -------------------------------------------------------------------------------- /templates/field/textareafield.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/field/textareafield.html.twig -------------------------------------------------------------------------------- /templates/field/textfield.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/field/textfield.html.twig -------------------------------------------------------------------------------- /templates/field/timefield.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/field/timefield.html.twig -------------------------------------------------------------------------------- /templates/field/undefinedfield.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/field/undefinedfield.html.twig -------------------------------------------------------------------------------- /templates/field/urgencyfield.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/field/urgencyfield.html.twig -------------------------------------------------------------------------------- /templates/pages/condition_for_item.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/pages/condition_for_item.html.twig -------------------------------------------------------------------------------- /templates/pages/form.formanswer.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/pages/form.formanswer.html.twig -------------------------------------------------------------------------------- /templates/pages/form.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/pages/form.html.twig -------------------------------------------------------------------------------- /templates/pages/form.validation.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/pages/form.validation.html.twig -------------------------------------------------------------------------------- /templates/pages/form_accesstype.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/pages/form_accesstype.html.twig -------------------------------------------------------------------------------- /templates/pages/form_formanswerproperties.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/pages/form_formanswerproperties.html.twig -------------------------------------------------------------------------------- /templates/pages/form_targets.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/pages/form_targets.html.twig -------------------------------------------------------------------------------- /templates/pages/question.condition.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/pages/question.condition.html.twig -------------------------------------------------------------------------------- /templates/pages/question.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/pages/question.html.twig -------------------------------------------------------------------------------- /templates/pages/question_for_form.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/pages/question_for_form.html.twig -------------------------------------------------------------------------------- /templates/pages/section.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/pages/section.html.twig -------------------------------------------------------------------------------- /templates/pages/targetchange.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/pages/targetchange.html.twig -------------------------------------------------------------------------------- /templates/pages/targetproblem.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/pages/targetproblem.html.twig -------------------------------------------------------------------------------- /templates/pages/targetticket.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/pages/targetticket.html.twig -------------------------------------------------------------------------------- /templates/pages/userform.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/pages/userform.html.twig -------------------------------------------------------------------------------- /templates/questionparameter/filter.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/questionparameter/filter.html.twig -------------------------------------------------------------------------------- /templates/questionparameter/range.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/questionparameter/range.html.twig -------------------------------------------------------------------------------- /templates/questionparameter/regex.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/templates/questionparameter/regex.html.twig -------------------------------------------------------------------------------- /tests/1-install/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/1-install/Config.php -------------------------------------------------------------------------------- /tests/2-integration/PluginFormcreatorFormAnswer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/2-integration/PluginFormcreatorFormAnswer.php -------------------------------------------------------------------------------- /tests/2-integration/PluginFormcreatorIssue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/2-integration/PluginFormcreatorIssue.php -------------------------------------------------------------------------------- /tests/2-integration/PluginFormcreatorTargetChange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/2-integration/PluginFormcreatorTargetChange.php -------------------------------------------------------------------------------- /tests/2-integration/PluginFormcreatorTargetProblem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/2-integration/PluginFormcreatorTargetProblem.php -------------------------------------------------------------------------------- /tests/2-integration/PluginFormcreatorTargetTicket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/2-integration/PluginFormcreatorTargetTicket.php -------------------------------------------------------------------------------- /tests/3-unit/GlpiPlugin/Formcreator/Field/ActorField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/GlpiPlugin/Formcreator/Field/ActorField.php -------------------------------------------------------------------------------- /tests/3-unit/GlpiPlugin/Formcreator/Field/CheckboxesField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/GlpiPlugin/Formcreator/Field/CheckboxesField.php -------------------------------------------------------------------------------- /tests/3-unit/GlpiPlugin/Formcreator/Field/DateField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/GlpiPlugin/Formcreator/Field/DateField.php -------------------------------------------------------------------------------- /tests/3-unit/GlpiPlugin/Formcreator/Field/DatetimeField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/GlpiPlugin/Formcreator/Field/DatetimeField.php -------------------------------------------------------------------------------- /tests/3-unit/GlpiPlugin/Formcreator/Field/DescriptionField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/GlpiPlugin/Formcreator/Field/DescriptionField.php -------------------------------------------------------------------------------- /tests/3-unit/GlpiPlugin/Formcreator/Field/DropdownField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/GlpiPlugin/Formcreator/Field/DropdownField.php -------------------------------------------------------------------------------- /tests/3-unit/GlpiPlugin/Formcreator/Field/EmailField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/GlpiPlugin/Formcreator/Field/EmailField.php -------------------------------------------------------------------------------- /tests/3-unit/GlpiPlugin/Formcreator/Field/FileField.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/GlpiPlugin/Formcreator/Field/FileField.class.php -------------------------------------------------------------------------------- /tests/3-unit/GlpiPlugin/Formcreator/Field/FloatField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/GlpiPlugin/Formcreator/Field/FloatField.php -------------------------------------------------------------------------------- /tests/3-unit/GlpiPlugin/Formcreator/Field/GlpiSelectField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/GlpiPlugin/Formcreator/Field/GlpiSelectField.php -------------------------------------------------------------------------------- /tests/3-unit/GlpiPlugin/Formcreator/Field/HiddenField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/GlpiPlugin/Formcreator/Field/HiddenField.php -------------------------------------------------------------------------------- /tests/3-unit/GlpiPlugin/Formcreator/Field/HostnameField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/GlpiPlugin/Formcreator/Field/HostnameField.php -------------------------------------------------------------------------------- /tests/3-unit/GlpiPlugin/Formcreator/Field/IntegerField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/GlpiPlugin/Formcreator/Field/IntegerField.php -------------------------------------------------------------------------------- /tests/3-unit/GlpiPlugin/Formcreator/Field/IpField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/GlpiPlugin/Formcreator/Field/IpField.php -------------------------------------------------------------------------------- /tests/3-unit/GlpiPlugin/Formcreator/Field/LdapSelectField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/GlpiPlugin/Formcreator/Field/LdapSelectField.php -------------------------------------------------------------------------------- /tests/3-unit/GlpiPlugin/Formcreator/Field/MultiselectField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/GlpiPlugin/Formcreator/Field/MultiselectField.php -------------------------------------------------------------------------------- /tests/3-unit/GlpiPlugin/Formcreator/Field/RadiosField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/GlpiPlugin/Formcreator/Field/RadiosField.php -------------------------------------------------------------------------------- /tests/3-unit/GlpiPlugin/Formcreator/Field/SelectField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/GlpiPlugin/Formcreator/Field/SelectField.php -------------------------------------------------------------------------------- /tests/3-unit/GlpiPlugin/Formcreator/Field/TagField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/GlpiPlugin/Formcreator/Field/TagField.php -------------------------------------------------------------------------------- /tests/3-unit/GlpiPlugin/Formcreator/Field/TextField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/GlpiPlugin/Formcreator/Field/TextField.php -------------------------------------------------------------------------------- /tests/3-unit/GlpiPlugin/Formcreator/Field/TextareaField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/GlpiPlugin/Formcreator/Field/TextareaField.php -------------------------------------------------------------------------------- /tests/3-unit/GlpiPlugin/Formcreator/Field/TimeField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/GlpiPlugin/Formcreator/Field/TimeField.php -------------------------------------------------------------------------------- /tests/3-unit/PluginFormcreatorAnswer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/PluginFormcreatorAnswer.php -------------------------------------------------------------------------------- /tests/3-unit/PluginFormcreatorCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/PluginFormcreatorCategory.php -------------------------------------------------------------------------------- /tests/3-unit/PluginFormcreatorCommon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/PluginFormcreatorCommon.php -------------------------------------------------------------------------------- /tests/3-unit/PluginFormcreatorCondition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/PluginFormcreatorCondition.php -------------------------------------------------------------------------------- /tests/3-unit/PluginFormcreatorEntityConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/PluginFormcreatorEntityConfig.php -------------------------------------------------------------------------------- /tests/3-unit/PluginFormcreatorFields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/PluginFormcreatorFields.php -------------------------------------------------------------------------------- /tests/3-unit/PluginFormcreatorForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/PluginFormcreatorForm.php -------------------------------------------------------------------------------- /tests/3-unit/PluginFormcreatorFormAccessType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/PluginFormcreatorFormAccessType.php -------------------------------------------------------------------------------- /tests/3-unit/PluginFormcreatorFormAnswer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/PluginFormcreatorFormAnswer.php -------------------------------------------------------------------------------- /tests/3-unit/PluginFormcreatorFormList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/PluginFormcreatorFormList.php -------------------------------------------------------------------------------- /tests/3-unit/PluginFormcreatorForm_Language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/PluginFormcreatorForm_Language.php -------------------------------------------------------------------------------- /tests/3-unit/PluginFormcreatorForm_Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/PluginFormcreatorForm_Profile.php -------------------------------------------------------------------------------- /tests/3-unit/PluginFormcreatorForm_Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/PluginFormcreatorForm_Validator.php -------------------------------------------------------------------------------- /tests/3-unit/PluginFormcreatorFormanswerValidation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/PluginFormcreatorFormanswerValidation.php -------------------------------------------------------------------------------- /tests/3-unit/PluginFormcreatorIssue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/PluginFormcreatorIssue.php -------------------------------------------------------------------------------- /tests/3-unit/PluginFormcreatorQuestion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/PluginFormcreatorQuestion.php -------------------------------------------------------------------------------- /tests/3-unit/PluginFormcreatorQuestionDependency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/PluginFormcreatorQuestionDependency.php -------------------------------------------------------------------------------- /tests/3-unit/PluginFormcreatorQuestionRange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/PluginFormcreatorQuestionRange.php -------------------------------------------------------------------------------- /tests/3-unit/PluginFormcreatorQuestionRegex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/PluginFormcreatorQuestionRegex.php -------------------------------------------------------------------------------- /tests/3-unit/PluginFormcreatorSection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/PluginFormcreatorSection.php -------------------------------------------------------------------------------- /tests/3-unit/PluginFormcreatorTargetChange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/PluginFormcreatorTargetChange.php -------------------------------------------------------------------------------- /tests/3-unit/PluginFormcreatorTargetProblem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/PluginFormcreatorTargetProblem.php -------------------------------------------------------------------------------- /tests/3-unit/PluginFormcreatorTargetTicket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/PluginFormcreatorTargetTicket.php -------------------------------------------------------------------------------- /tests/3-unit/PluginFormcreatorTarget_Actor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/PluginFormcreatorTarget_Actor.php -------------------------------------------------------------------------------- /tests/3-unit/PluginFormcreatorTranslation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/3-unit/PluginFormcreatorTranslation.php -------------------------------------------------------------------------------- /tests/4-functional/Central.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/4-functional/Central.php -------------------------------------------------------------------------------- /tests/4-functional/Glpi/Plugin/Formcreator/Field/ActorField.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/4-functional/Glpi/Plugin/Formcreator/Field/ActorField.class.php -------------------------------------------------------------------------------- /tests/4-functional/Glpi/Plugin/Formcreator/Field/CheckboxesField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/4-functional/Glpi/Plugin/Formcreator/Field/CheckboxesField.php -------------------------------------------------------------------------------- /tests/4-functional/Glpi/Plugin/Formcreator/Field/DateField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/4-functional/Glpi/Plugin/Formcreator/Field/DateField.php -------------------------------------------------------------------------------- /tests/4-functional/Glpi/Plugin/Formcreator/Field/DatetimeField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/4-functional/Glpi/Plugin/Formcreator/Field/DatetimeField.php -------------------------------------------------------------------------------- /tests/4-functional/Glpi/Plugin/Formcreator/Field/DropdownField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/4-functional/Glpi/Plugin/Formcreator/Field/DropdownField.php -------------------------------------------------------------------------------- /tests/4-functional/Glpi/Plugin/Formcreator/Field/EmailField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/4-functional/Glpi/Plugin/Formcreator/Field/EmailField.php -------------------------------------------------------------------------------- /tests/4-functional/Glpi/Plugin/Formcreator/Field/FileField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/4-functional/Glpi/Plugin/Formcreator/Field/FileField.php -------------------------------------------------------------------------------- /tests/4-functional/Glpi/Plugin/Formcreator/Field/FloatField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/4-functional/Glpi/Plugin/Formcreator/Field/FloatField.php -------------------------------------------------------------------------------- /tests/4-functional/Glpi/Plugin/Formcreator/Field/GlpiselectField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/4-functional/Glpi/Plugin/Formcreator/Field/GlpiselectField.php -------------------------------------------------------------------------------- /tests/4-functional/Glpi/Plugin/Formcreator/Field/HiddenField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/4-functional/Glpi/Plugin/Formcreator/Field/HiddenField.php -------------------------------------------------------------------------------- /tests/4-functional/Glpi/Plugin/Formcreator/Field/IntegerField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/4-functional/Glpi/Plugin/Formcreator/Field/IntegerField.php -------------------------------------------------------------------------------- /tests/4-functional/Glpi/Plugin/Formcreator/Field/LdapSelectField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/4-functional/Glpi/Plugin/Formcreator/Field/LdapSelectField.php -------------------------------------------------------------------------------- /tests/4-functional/Glpi/Plugin/Formcreator/Field/MultiselectField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/4-functional/Glpi/Plugin/Formcreator/Field/MultiselectField.php -------------------------------------------------------------------------------- /tests/4-functional/Glpi/Plugin/Formcreator/Field/RadiosField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/4-functional/Glpi/Plugin/Formcreator/Field/RadiosField.php -------------------------------------------------------------------------------- /tests/4-functional/Glpi/Plugin/Formcreator/Field/RequesttypeField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/4-functional/Glpi/Plugin/Formcreator/Field/RequesttypeField.php -------------------------------------------------------------------------------- /tests/4-functional/Glpi/Plugin/Formcreator/Field/SelectField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/4-functional/Glpi/Plugin/Formcreator/Field/SelectField.php -------------------------------------------------------------------------------- /tests/4-functional/Glpi/Plugin/Formcreator/Field/TextField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/4-functional/Glpi/Plugin/Formcreator/Field/TextField.php -------------------------------------------------------------------------------- /tests/4-functional/Glpi/Plugin/Formcreator/Field/TextareaField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/4-functional/Glpi/Plugin/Formcreator/Field/TextareaField.php -------------------------------------------------------------------------------- /tests/4-functional/Glpi/Plugin/Formcreator/Field/TimeField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/4-functional/Glpi/Plugin/Formcreator/Field/TimeField.php -------------------------------------------------------------------------------- /tests/4-functional/Glpi/Plugin/Formcreator/Field/UrgencyField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/4-functional/Glpi/Plugin/Formcreator/Field/UrgencyField.php -------------------------------------------------------------------------------- /tests/4-functional/PluginFormcreatorForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/4-functional/PluginFormcreatorForm.php -------------------------------------------------------------------------------- /tests/4-functional/PluginFormcreatorQuestion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/4-functional/PluginFormcreatorQuestion.php -------------------------------------------------------------------------------- /tests/4-functional/PluginFormcreatorSection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/4-functional/PluginFormcreatorSection.php -------------------------------------------------------------------------------- /tests/4-functional/testCentralHasTab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/4-functional/testCentralHasTab.js -------------------------------------------------------------------------------- /tests/5-uninstall/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/5-uninstall/Config.php -------------------------------------------------------------------------------- /tests/before_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/before_script.sh -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/composer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/composer.sh -------------------------------------------------------------------------------- /tests/docker_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/docker_install.sh -------------------------------------------------------------------------------- /tests/fixture/PluginFormcreatorDependentField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/fixture/PluginFormcreatorDependentField.php -------------------------------------------------------------------------------- /tests/fixture/all_question_types_form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/fixture/all_question_types_form.json -------------------------------------------------------------------------------- /tests/fixture/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/fixture/picture.png -------------------------------------------------------------------------------- /tests/fixture/upload.txt: -------------------------------------------------------------------------------- 1 | This is an uploaded file for tests 2 | -------------------------------------------------------------------------------- /tests/functionalTest.dist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/functionalTest.dist.js -------------------------------------------------------------------------------- /tests/functionalTest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/functionalTest.json -------------------------------------------------------------------------------- /tests/logs/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/plugin_fields_disable_glpi_max_version.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/plugin_fields_disable_glpi_max_version.diff -------------------------------------------------------------------------------- /tests/plugin_formcreator_config_2.5.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/plugin_formcreator_config_2.5.0.sql -------------------------------------------------------------------------------- /tests/plugin_formcreator_empty_2.5.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/plugin_formcreator_empty_2.5.0.sql -------------------------------------------------------------------------------- /tests/plugin_tag_disable_glpi_max_version.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/plugin_tag_disable_glpi_max_version.diff -------------------------------------------------------------------------------- /tests/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/router.php -------------------------------------------------------------------------------- /tests/rulest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/rulest.xml -------------------------------------------------------------------------------- /tests/script-functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/script-functions.sh -------------------------------------------------------------------------------- /tests/script-specific-functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/script-specific-functions.sh -------------------------------------------------------------------------------- /tests/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/script.sh -------------------------------------------------------------------------------- /tests/src/AbstractItilTargetTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/src/AbstractItilTargetTestCase.php -------------------------------------------------------------------------------- /tests/src/CommonAbstractFieldTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/src/CommonAbstractFieldTestCase.php -------------------------------------------------------------------------------- /tests/src/CommonBrowsing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/src/CommonBrowsing.php -------------------------------------------------------------------------------- /tests/src/CommonFunctionalTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/src/CommonFunctionalTestCase.php -------------------------------------------------------------------------------- /tests/src/CommonQuestionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/src/CommonQuestionTest.php -------------------------------------------------------------------------------- /tests/src/CommonTargetTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/src/CommonTargetTestCase.php -------------------------------------------------------------------------------- /tests/src/CommonTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/src/CommonTestCase.php -------------------------------------------------------------------------------- /tests/suite-robo/ConventionalChangelog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/suite-robo/ConventionalChangelog.php -------------------------------------------------------------------------------- /tests/suite-robo/Git.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/suite-robo/Git.php -------------------------------------------------------------------------------- /tests/suite-robo/Semver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tests/suite-robo/Semver.php -------------------------------------------------------------------------------- /tests/yarn.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | npm install --global yarn 4 | -------------------------------------------------------------------------------- /tools/HEADER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tools/HEADER -------------------------------------------------------------------------------- /tools/extract_template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/tools/extract_template.sh -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/formcreator/HEAD/yarn.lock --------------------------------------------------------------------------------