├── .github └── workflows │ ├── generatemo.yml │ ├── release.yml │ └── updatepot.yml ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── ajax ├── dropdownMassiveAction.php ├── dropdownSuppliers.php └── index.php ├── front ├── config.form.php ├── config.php ├── import.php ├── index.php └── massiveaction.php ├── hook.php ├── index.php ├── locales ├── cs_CZ.mo ├── cs_CZ.po ├── en_GB.mo ├── en_GB.po ├── es_AR.mo ├── es_AR.po ├── es_EC.mo ├── es_EC.po ├── es_MX.mo ├── es_MX.po ├── fi_FI.mo ├── fi_FI.po ├── fr_FR.mo ├── fr_FR.po ├── glpi.pot ├── it_IT.mo ├── it_IT.po ├── pl_PL.mo ├── pl_PL.po ├── pt_BR.mo ├── pt_BR.po ├── pt_PT.mo ├── pt_PT.po ├── ro_RO.mo ├── ro_RO.po ├── ru_RU.mo ├── ru_RU.po ├── tr_TR.mo ├── tr_TR.po ├── zh_TW.mo └── zh_TW.po ├── manufacturersimports.css ├── manufacturersimports.png ├── manufacturersimports.xml ├── prerequis.txt ├── public └── manufacturersimports.css ├── setup.php ├── sql ├── empty-1.0.sql ├── empty-1.1.sql ├── empty-1.2.0.sql ├── empty-1.3.0.sql ├── empty-1.4.1.sql ├── empty-1.5.0.sql ├── empty-1.7.0.sql ├── empty-2.0.2.sql ├── empty-2.1.0.sql ├── empty-2.1.3.sql ├── empty-2.2.1.sql ├── empty-2.3.0.sql ├── empty-3.0.0.sql ├── empty-3.0.6.sql ├── update-1.1.sql ├── update-1.2.0.sql ├── update-1.3.0.sql ├── update-1.4.1.sql ├── update-1.5.0.sql ├── update-1.7.0.sql ├── update-2.0.2.sql ├── update-2.1.0.sql ├── update-2.1.3.sql └── update-3.0.6.sql ├── src ├── Config.php ├── Dell.php ├── Fujitsu.php ├── HP.php ├── Ibm.php ├── Import.php ├── Lenovo.php ├── Log.php ├── Manufacturer.php ├── Menu.php ├── PostImport.php ├── PreImport.php ├── Profile.php ├── Toshiba.php └── Wortmann_ag.php └── tools ├── extract_template.sh ├── update_mo.pl └── update_po.pl /.github/workflows/generatemo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/.github/workflows/generatemo.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/updatepot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/.github/workflows/updatepot.yml -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/README.md -------------------------------------------------------------------------------- /ajax/dropdownMassiveAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/ajax/dropdownMassiveAction.php -------------------------------------------------------------------------------- /ajax/dropdownSuppliers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/ajax/dropdownSuppliers.php -------------------------------------------------------------------------------- /ajax/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/ajax/index.php -------------------------------------------------------------------------------- /front/config.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/front/config.form.php -------------------------------------------------------------------------------- /front/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/front/config.php -------------------------------------------------------------------------------- /front/import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/front/import.php -------------------------------------------------------------------------------- /front/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/front/index.php -------------------------------------------------------------------------------- /front/massiveaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/front/massiveaction.php -------------------------------------------------------------------------------- /hook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/hook.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/index.php -------------------------------------------------------------------------------- /locales/cs_CZ.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/locales/cs_CZ.mo -------------------------------------------------------------------------------- /locales/cs_CZ.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/locales/cs_CZ.po -------------------------------------------------------------------------------- /locales/en_GB.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/locales/en_GB.mo -------------------------------------------------------------------------------- /locales/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/locales/en_GB.po -------------------------------------------------------------------------------- /locales/es_AR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/locales/es_AR.mo -------------------------------------------------------------------------------- /locales/es_AR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/locales/es_AR.po -------------------------------------------------------------------------------- /locales/es_EC.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/locales/es_EC.mo -------------------------------------------------------------------------------- /locales/es_EC.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/locales/es_EC.po -------------------------------------------------------------------------------- /locales/es_MX.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/locales/es_MX.mo -------------------------------------------------------------------------------- /locales/es_MX.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/locales/es_MX.po -------------------------------------------------------------------------------- /locales/fi_FI.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/locales/fi_FI.mo -------------------------------------------------------------------------------- /locales/fi_FI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/locales/fi_FI.po -------------------------------------------------------------------------------- /locales/fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/locales/fr_FR.mo -------------------------------------------------------------------------------- /locales/fr_FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/locales/fr_FR.po -------------------------------------------------------------------------------- /locales/glpi.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/locales/glpi.pot -------------------------------------------------------------------------------- /locales/it_IT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/locales/it_IT.mo -------------------------------------------------------------------------------- /locales/it_IT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/locales/it_IT.po -------------------------------------------------------------------------------- /locales/pl_PL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/locales/pl_PL.mo -------------------------------------------------------------------------------- /locales/pl_PL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/locales/pl_PL.po -------------------------------------------------------------------------------- /locales/pt_BR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/locales/pt_BR.mo -------------------------------------------------------------------------------- /locales/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/locales/pt_BR.po -------------------------------------------------------------------------------- /locales/pt_PT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/locales/pt_PT.mo -------------------------------------------------------------------------------- /locales/pt_PT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/locales/pt_PT.po -------------------------------------------------------------------------------- /locales/ro_RO.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/locales/ro_RO.mo -------------------------------------------------------------------------------- /locales/ro_RO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/locales/ro_RO.po -------------------------------------------------------------------------------- /locales/ru_RU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/locales/ru_RU.mo -------------------------------------------------------------------------------- /locales/ru_RU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/locales/ru_RU.po -------------------------------------------------------------------------------- /locales/tr_TR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/locales/tr_TR.mo -------------------------------------------------------------------------------- /locales/tr_TR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/locales/tr_TR.po -------------------------------------------------------------------------------- /locales/zh_TW.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/locales/zh_TW.mo -------------------------------------------------------------------------------- /locales/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/locales/zh_TW.po -------------------------------------------------------------------------------- /manufacturersimports.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/manufacturersimports.css -------------------------------------------------------------------------------- /manufacturersimports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/manufacturersimports.png -------------------------------------------------------------------------------- /manufacturersimports.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/manufacturersimports.xml -------------------------------------------------------------------------------- /prerequis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/prerequis.txt -------------------------------------------------------------------------------- /public/manufacturersimports.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/public/manufacturersimports.css -------------------------------------------------------------------------------- /setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/setup.php -------------------------------------------------------------------------------- /sql/empty-1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/sql/empty-1.0.sql -------------------------------------------------------------------------------- /sql/empty-1.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/sql/empty-1.1.sql -------------------------------------------------------------------------------- /sql/empty-1.2.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/sql/empty-1.2.0.sql -------------------------------------------------------------------------------- /sql/empty-1.3.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/sql/empty-1.3.0.sql -------------------------------------------------------------------------------- /sql/empty-1.4.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/sql/empty-1.4.1.sql -------------------------------------------------------------------------------- /sql/empty-1.5.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/sql/empty-1.5.0.sql -------------------------------------------------------------------------------- /sql/empty-1.7.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/sql/empty-1.7.0.sql -------------------------------------------------------------------------------- /sql/empty-2.0.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/sql/empty-2.0.2.sql -------------------------------------------------------------------------------- /sql/empty-2.1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/sql/empty-2.1.0.sql -------------------------------------------------------------------------------- /sql/empty-2.1.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/sql/empty-2.1.3.sql -------------------------------------------------------------------------------- /sql/empty-2.2.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/sql/empty-2.2.1.sql -------------------------------------------------------------------------------- /sql/empty-2.3.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/sql/empty-2.3.0.sql -------------------------------------------------------------------------------- /sql/empty-3.0.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/sql/empty-3.0.0.sql -------------------------------------------------------------------------------- /sql/empty-3.0.6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/sql/empty-3.0.6.sql -------------------------------------------------------------------------------- /sql/update-1.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/sql/update-1.1.sql -------------------------------------------------------------------------------- /sql/update-1.2.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/sql/update-1.2.0.sql -------------------------------------------------------------------------------- /sql/update-1.3.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/sql/update-1.3.0.sql -------------------------------------------------------------------------------- /sql/update-1.4.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/sql/update-1.4.1.sql -------------------------------------------------------------------------------- /sql/update-1.5.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/sql/update-1.5.0.sql -------------------------------------------------------------------------------- /sql/update-1.7.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/sql/update-1.7.0.sql -------------------------------------------------------------------------------- /sql/update-2.0.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/sql/update-2.0.2.sql -------------------------------------------------------------------------------- /sql/update-2.1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/sql/update-2.1.0.sql -------------------------------------------------------------------------------- /sql/update-2.1.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/sql/update-2.1.3.sql -------------------------------------------------------------------------------- /sql/update-3.0.6.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS `glpi_plugin_manufacturersimports_models`; 2 | -------------------------------------------------------------------------------- /src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/src/Config.php -------------------------------------------------------------------------------- /src/Dell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/src/Dell.php -------------------------------------------------------------------------------- /src/Fujitsu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/src/Fujitsu.php -------------------------------------------------------------------------------- /src/HP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/src/HP.php -------------------------------------------------------------------------------- /src/Ibm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/src/Ibm.php -------------------------------------------------------------------------------- /src/Import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/src/Import.php -------------------------------------------------------------------------------- /src/Lenovo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/src/Lenovo.php -------------------------------------------------------------------------------- /src/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/src/Log.php -------------------------------------------------------------------------------- /src/Manufacturer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/src/Manufacturer.php -------------------------------------------------------------------------------- /src/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/src/Menu.php -------------------------------------------------------------------------------- /src/PostImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/src/PostImport.php -------------------------------------------------------------------------------- /src/PreImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/src/PreImport.php -------------------------------------------------------------------------------- /src/Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/src/Profile.php -------------------------------------------------------------------------------- /src/Toshiba.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/src/Toshiba.php -------------------------------------------------------------------------------- /src/Wortmann_ag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/src/Wortmann_ag.php -------------------------------------------------------------------------------- /tools/extract_template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/tools/extract_template.sh -------------------------------------------------------------------------------- /tools/update_mo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/tools/update_mo.pl -------------------------------------------------------------------------------- /tools/update_po.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfotelGLPI/manufacturersimports/HEAD/tools/update_po.pl --------------------------------------------------------------------------------