├── .editorconfig ├── .gitignore ├── README.md ├── crowdin.yml ├── httpheader.php ├── httpheader.xml ├── language ├── de-DE │ ├── de-DE.plg_system_httpheader.ini │ └── de-DE.plg_system_httpheader.sys.ini ├── en-GB │ ├── en-GB.plg_system_httpheader.ini │ └── en-GB.plg_system_httpheader.sys.ini ├── es-ES │ ├── es-ES.plg_system_httpheader.ini │ └── es-ES.plg_system_httpheader.sys.ini ├── fr-FR │ ├── fr-FR.plg_system_httpheader.ini │ └── fr-FR.plg_system_httpheader.sys.ini ├── it-IT │ ├── it-IT.plg_system_httpheader.ini │ └── it-IT.plg_system_httpheader.sys.ini ├── nl-NL │ ├── nl-NL.plg_system_httpheader.ini │ └── nl-NL.plg_system_httpheader.sys.ini ├── pl-PL │ └── pl-PL.plg_system_httpheader.sys.ini └── pt-BR │ ├── pt-BR.plg_system_httpheader.ini │ └── pt-BR.plg_system_httpheader.sys.ini ├── script.php └── update.xml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-24/plg_system_httpheader/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/plg_system_httpheader.zip 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-24/plg_system_httpheader/HEAD/README.md -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-24/plg_system_httpheader/HEAD/crowdin.yml -------------------------------------------------------------------------------- /httpheader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-24/plg_system_httpheader/HEAD/httpheader.php -------------------------------------------------------------------------------- /httpheader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-24/plg_system_httpheader/HEAD/httpheader.xml -------------------------------------------------------------------------------- /language/de-DE/de-DE.plg_system_httpheader.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-24/plg_system_httpheader/HEAD/language/de-DE/de-DE.plg_system_httpheader.ini -------------------------------------------------------------------------------- /language/de-DE/de-DE.plg_system_httpheader.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-24/plg_system_httpheader/HEAD/language/de-DE/de-DE.plg_system_httpheader.sys.ini -------------------------------------------------------------------------------- /language/en-GB/en-GB.plg_system_httpheader.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-24/plg_system_httpheader/HEAD/language/en-GB/en-GB.plg_system_httpheader.ini -------------------------------------------------------------------------------- /language/en-GB/en-GB.plg_system_httpheader.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-24/plg_system_httpheader/HEAD/language/en-GB/en-GB.plg_system_httpheader.sys.ini -------------------------------------------------------------------------------- /language/es-ES/es-ES.plg_system_httpheader.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-24/plg_system_httpheader/HEAD/language/es-ES/es-ES.plg_system_httpheader.ini -------------------------------------------------------------------------------- /language/es-ES/es-ES.plg_system_httpheader.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-24/plg_system_httpheader/HEAD/language/es-ES/es-ES.plg_system_httpheader.sys.ini -------------------------------------------------------------------------------- /language/fr-FR/fr-FR.plg_system_httpheader.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-24/plg_system_httpheader/HEAD/language/fr-FR/fr-FR.plg_system_httpheader.ini -------------------------------------------------------------------------------- /language/fr-FR/fr-FR.plg_system_httpheader.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-24/plg_system_httpheader/HEAD/language/fr-FR/fr-FR.plg_system_httpheader.sys.ini -------------------------------------------------------------------------------- /language/it-IT/it-IT.plg_system_httpheader.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-24/plg_system_httpheader/HEAD/language/it-IT/it-IT.plg_system_httpheader.ini -------------------------------------------------------------------------------- /language/it-IT/it-IT.plg_system_httpheader.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-24/plg_system_httpheader/HEAD/language/it-IT/it-IT.plg_system_httpheader.sys.ini -------------------------------------------------------------------------------- /language/nl-NL/nl-NL.plg_system_httpheader.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-24/plg_system_httpheader/HEAD/language/nl-NL/nl-NL.plg_system_httpheader.ini -------------------------------------------------------------------------------- /language/nl-NL/nl-NL.plg_system_httpheader.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-24/plg_system_httpheader/HEAD/language/nl-NL/nl-NL.plg_system_httpheader.sys.ini -------------------------------------------------------------------------------- /language/pl-PL/pl-PL.plg_system_httpheader.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-24/plg_system_httpheader/HEAD/language/pl-PL/pl-PL.plg_system_httpheader.sys.ini -------------------------------------------------------------------------------- /language/pt-BR/pt-BR.plg_system_httpheader.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-24/plg_system_httpheader/HEAD/language/pt-BR/pt-BR.plg_system_httpheader.ini -------------------------------------------------------------------------------- /language/pt-BR/pt-BR.plg_system_httpheader.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-24/plg_system_httpheader/HEAD/language/pt-BR/pt-BR.plg_system_httpheader.sys.ini -------------------------------------------------------------------------------- /script.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-24/plg_system_httpheader/HEAD/script.php -------------------------------------------------------------------------------- /update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zero-24/plg_system_httpheader/HEAD/update.xml --------------------------------------------------------------------------------