├── .github ├── dependabot.yml └── workflows │ ├── continuous-integration.yml │ ├── locales-sync.yml │ └── locales-update-source.yml ├── .gitignore ├── .php-cs-fixer.php ├── .tx └── config ├── AUTHORS.txt ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── example.css ├── example.js ├── example.xml ├── example_anonymous.css ├── example_anonymous.js ├── front ├── config.php ├── devicecamera.form.php ├── devicecamera.php ├── dropdown.form.php ├── dropdown.php ├── example.form.php ├── example.php ├── popup.php ├── ruletest.form.php └── ruletest.php ├── hook.php ├── locales ├── cs_CZ.mo ├── cs_CZ.po ├── en_GB.mo ├── en_GB.po ├── en_US.mo ├── en_US.po ├── es_ES.mo ├── es_ES.po ├── es_MX.mo ├── es_MX.po ├── example.pot ├── fr_FR.mo ├── fr_FR.po ├── hu_HU.mo ├── hu_HU.po ├── it_IT.mo ├── it_IT.po ├── ko_KR.mo ├── ko_KR.po ├── lv_LV.mo ├── lv_LV.po ├── nl_NL.mo ├── nl_NL.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 ├── ru_lv.mo ├── ru_lv.po ├── tr_TR.mo ├── tr_TR.po ├── uk_UA.mo ├── uk_UA.po ├── zh_CN.mo └── zh_CN.po ├── misc ├── logo.png └── screenshots │ ├── first.png │ ├── fourth.png │ ├── second.png │ └── third.png ├── mymodule_anonymous.js ├── phpstan.neon ├── psalm.xml ├── public └── computer_icon.svg ├── rector.php ├── report.php ├── setup.php ├── src ├── Child.php ├── Computer.php ├── Config.php ├── DeviceCamera.php ├── Document.php ├── Dropdown.php ├── Example.php ├── Filters │ └── ComputerModelFilter.php ├── ItemForm.php ├── Item_DeviceCamera.php ├── NotificationTargetExample.php ├── Profile.php ├── RuleTest.php ├── RuleTestCollection.php └── Showtabitem.php ├── stat.php └── tools └── HEADER /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/continuous-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/.github/workflows/continuous-integration.yml -------------------------------------------------------------------------------- /.github/workflows/locales-sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/.github/workflows/locales-sync.yml -------------------------------------------------------------------------------- /.github/workflows/locales-update-source.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/.github/workflows/locales-update-source.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | vendor/ 3 | .gh_token 4 | *.min.* 5 | 6 | -------------------------------------------------------------------------------- /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/.tx/config -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/composer.lock -------------------------------------------------------------------------------- /example.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/example.css -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/example.js -------------------------------------------------------------------------------- /example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/example.xml -------------------------------------------------------------------------------- /example_anonymous.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/example_anonymous.css -------------------------------------------------------------------------------- /example_anonymous.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/example_anonymous.js -------------------------------------------------------------------------------- /front/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/front/config.php -------------------------------------------------------------------------------- /front/devicecamera.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/front/devicecamera.form.php -------------------------------------------------------------------------------- /front/devicecamera.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/front/devicecamera.php -------------------------------------------------------------------------------- /front/dropdown.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/front/dropdown.form.php -------------------------------------------------------------------------------- /front/dropdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/front/dropdown.php -------------------------------------------------------------------------------- /front/example.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/front/example.form.php -------------------------------------------------------------------------------- /front/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/front/example.php -------------------------------------------------------------------------------- /front/popup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/front/popup.php -------------------------------------------------------------------------------- /front/ruletest.form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/front/ruletest.form.php -------------------------------------------------------------------------------- /front/ruletest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/front/ruletest.php -------------------------------------------------------------------------------- /hook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/hook.php -------------------------------------------------------------------------------- /locales/cs_CZ.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/cs_CZ.mo -------------------------------------------------------------------------------- /locales/cs_CZ.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/cs_CZ.po -------------------------------------------------------------------------------- /locales/en_GB.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/en_GB.mo -------------------------------------------------------------------------------- /locales/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/en_GB.po -------------------------------------------------------------------------------- /locales/en_US.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/en_US.mo -------------------------------------------------------------------------------- /locales/en_US.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/en_US.po -------------------------------------------------------------------------------- /locales/es_ES.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/es_ES.mo -------------------------------------------------------------------------------- /locales/es_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/es_ES.po -------------------------------------------------------------------------------- /locales/es_MX.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/es_MX.mo -------------------------------------------------------------------------------- /locales/es_MX.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/es_MX.po -------------------------------------------------------------------------------- /locales/example.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/example.pot -------------------------------------------------------------------------------- /locales/fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/fr_FR.mo -------------------------------------------------------------------------------- /locales/fr_FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/fr_FR.po -------------------------------------------------------------------------------- /locales/hu_HU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/hu_HU.mo -------------------------------------------------------------------------------- /locales/hu_HU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/hu_HU.po -------------------------------------------------------------------------------- /locales/it_IT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/it_IT.mo -------------------------------------------------------------------------------- /locales/it_IT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/it_IT.po -------------------------------------------------------------------------------- /locales/ko_KR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/ko_KR.mo -------------------------------------------------------------------------------- /locales/ko_KR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/ko_KR.po -------------------------------------------------------------------------------- /locales/lv_LV.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/lv_LV.mo -------------------------------------------------------------------------------- /locales/lv_LV.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/lv_LV.po -------------------------------------------------------------------------------- /locales/nl_NL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/nl_NL.mo -------------------------------------------------------------------------------- /locales/nl_NL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/nl_NL.po -------------------------------------------------------------------------------- /locales/pl_PL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/pl_PL.mo -------------------------------------------------------------------------------- /locales/pl_PL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/pl_PL.po -------------------------------------------------------------------------------- /locales/pt_BR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/pt_BR.mo -------------------------------------------------------------------------------- /locales/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/pt_BR.po -------------------------------------------------------------------------------- /locales/pt_PT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/pt_PT.mo -------------------------------------------------------------------------------- /locales/pt_PT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/pt_PT.po -------------------------------------------------------------------------------- /locales/ro_RO.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/ro_RO.mo -------------------------------------------------------------------------------- /locales/ro_RO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/ro_RO.po -------------------------------------------------------------------------------- /locales/ru_RU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/ru_RU.mo -------------------------------------------------------------------------------- /locales/ru_RU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/ru_RU.po -------------------------------------------------------------------------------- /locales/ru_lv.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/ru_lv.mo -------------------------------------------------------------------------------- /locales/ru_lv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/ru_lv.po -------------------------------------------------------------------------------- /locales/tr_TR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/tr_TR.mo -------------------------------------------------------------------------------- /locales/tr_TR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/tr_TR.po -------------------------------------------------------------------------------- /locales/uk_UA.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/uk_UA.mo -------------------------------------------------------------------------------- /locales/uk_UA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/uk_UA.po -------------------------------------------------------------------------------- /locales/zh_CN.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/zh_CN.mo -------------------------------------------------------------------------------- /locales/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/locales/zh_CN.po -------------------------------------------------------------------------------- /misc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/misc/logo.png -------------------------------------------------------------------------------- /misc/screenshots/first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/misc/screenshots/first.png -------------------------------------------------------------------------------- /misc/screenshots/fourth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/misc/screenshots/fourth.png -------------------------------------------------------------------------------- /misc/screenshots/second.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/misc/screenshots/second.png -------------------------------------------------------------------------------- /misc/screenshots/third.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/misc/screenshots/third.png -------------------------------------------------------------------------------- /mymodule_anonymous.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/mymodule_anonymous.js -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/phpstan.neon -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/psalm.xml -------------------------------------------------------------------------------- /public/computer_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/public/computer_icon.svg -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/rector.php -------------------------------------------------------------------------------- /report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/report.php -------------------------------------------------------------------------------- /setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/setup.php -------------------------------------------------------------------------------- /src/Child.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/src/Child.php -------------------------------------------------------------------------------- /src/Computer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/src/Computer.php -------------------------------------------------------------------------------- /src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/src/Config.php -------------------------------------------------------------------------------- /src/DeviceCamera.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/src/DeviceCamera.php -------------------------------------------------------------------------------- /src/Document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/src/Document.php -------------------------------------------------------------------------------- /src/Dropdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/src/Dropdown.php -------------------------------------------------------------------------------- /src/Example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/src/Example.php -------------------------------------------------------------------------------- /src/Filters/ComputerModelFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/src/Filters/ComputerModelFilter.php -------------------------------------------------------------------------------- /src/ItemForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/src/ItemForm.php -------------------------------------------------------------------------------- /src/Item_DeviceCamera.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/src/Item_DeviceCamera.php -------------------------------------------------------------------------------- /src/NotificationTargetExample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/src/NotificationTargetExample.php -------------------------------------------------------------------------------- /src/Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/src/Profile.php -------------------------------------------------------------------------------- /src/RuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/src/RuleTest.php -------------------------------------------------------------------------------- /src/RuleTestCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/src/RuleTestCollection.php -------------------------------------------------------------------------------- /src/Showtabitem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/src/Showtabitem.php -------------------------------------------------------------------------------- /stat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/stat.php -------------------------------------------------------------------------------- /tools/HEADER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pluginsGLPI/example/HEAD/tools/HEADER --------------------------------------------------------------------------------