├── .github ├── oxid-esales │ └── module-usercentrics.yaml ├── pull_request_template.md └── workflows │ ├── dispatch_module.yml │ ├── scheduled.yml │ └── trigger.yaml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets └── logo.png ├── composer.json ├── metadata.php ├── recipes └── setup-development.sh ├── services.yaml ├── src ├── Core │ ├── Module.php │ ├── ScriptRenderer.php │ └── ViewConfig.php ├── DataObject │ ├── Configuration.php │ ├── Script.php │ ├── ScriptSnippet.php │ └── Service.php ├── Exception │ ├── PatternNotFound.php │ └── WidgetsNotSupported.php ├── Service │ ├── Configuration │ │ ├── ConfigurationDao.php │ │ ├── ConfigurationDaoInterface.php │ │ ├── StorageInterface.php │ │ └── YamlStorage.php │ ├── Integration │ │ ├── IntegrationScriptBuilder.php │ │ ├── IntegrationScriptBuilderInterface.php │ │ ├── IntegrationVersionFactory.php │ │ ├── IntegrationVersionFactoryInterface.php │ │ └── Pattern │ │ │ ├── CmpV1.php │ │ │ ├── CmpV2.php │ │ │ ├── CmpV2Legacy.php │ │ │ ├── CmpV2Tcf.php │ │ │ ├── CmpV2TcfLegacy.php │ │ │ ├── Custom.php │ │ │ └── IntegrationPatternInterface.php │ ├── IntegrationScript.php │ ├── IntegrationScriptInterface.php │ ├── ModuleSettings.php │ ├── ModuleSettingsInterface.php │ ├── Renderer.php │ ├── RendererInterface.php │ ├── ScriptServiceMapper.php │ └── ScriptServiceMapperInterface.php └── Traits │ └── ServiceContainer.php ├── tests ├── Codeception │ ├── Acceptance.suite.yml │ ├── Acceptance │ │ ├── BaseCest.php │ │ ├── ScriptIncludeAdjustmentCest.php │ │ ├── ScriptSnippetAdjustmentCest.php │ │ ├── UsercentricsButtonCest.php │ │ ├── UsercentricsDeactivateBlockingCest.php │ │ └── _bootstrap.php │ ├── Config │ │ └── params.php │ ├── Module │ │ ├── .gitkeep │ │ └── Config.php │ ├── Output │ │ └── .gitkeep │ ├── Page │ │ └── .gitkeep │ └── Support │ │ ├── AcceptanceTester.php │ │ ├── Data │ │ ├── dump.sql │ │ └── fixtures.php │ │ ├── Helper │ │ └── Acceptance.php │ │ └── _generated │ │ └── .gitignore ├── Integration │ ├── Core │ │ └── ViewConfigTest.php │ └── Service │ │ ├── ConfigTest.php │ │ ├── ConfigTestData │ │ ├── ConfigPutTest.yaml │ │ ├── ConfigReadTest.yaml │ │ ├── EmptyTest.yaml │ │ ├── Service1.yaml │ │ └── Snippets.yaml │ │ ├── IntegrationScriptTest.php │ │ ├── RendererTest.php │ │ ├── ScriptServiceMapperTest.php │ │ └── YamlStorageTest.php ├── PhpMd │ └── standard.xml ├── PhpStan │ ├── phpstan-bootstrap.php │ └── phpstan.neon ├── Unit │ ├── DataObjects │ │ ├── ConfigurationTest.php │ │ ├── ScriptSnippetTest.php │ │ ├── ScriptTest.php │ │ └── ServiceTest.php │ ├── Service │ │ ├── Integration │ │ │ ├── IntegrationScriptBuilderTest.php │ │ │ ├── IntegrationVersionFactoryTest.php │ │ │ └── Pattern │ │ │ │ ├── CmpV1Test.php │ │ │ │ ├── CmpV2TcfTest.php │ │ │ │ ├── CmpV2Test.php │ │ │ │ └── CustomTest.php │ │ └── ModuleSettingsTest.php │ └── UnitTestCase.php ├── codeception.yml ├── phpcs.xml └── phpunit.xml └── views ├── admin_twig ├── de │ └── module_options.php └── en │ └── module_options.php └── twig └── extensions └── themes └── default └── layout └── base.html.twig /.github/oxid-esales/module-usercentrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/.github/oxid-esales/module-usercentrics.yaml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/dispatch_module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/.github/workflows/dispatch_module.yml -------------------------------------------------------------------------------- /.github/workflows/scheduled.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/.github/workflows/scheduled.yml -------------------------------------------------------------------------------- /.github/workflows/trigger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/.github/workflows/trigger.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _generated/* 2 | .idea -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/README.md -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/assets/logo.png -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/composer.json -------------------------------------------------------------------------------- /metadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/metadata.php -------------------------------------------------------------------------------- /recipes/setup-development.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/recipes/setup-development.sh -------------------------------------------------------------------------------- /services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/services.yaml -------------------------------------------------------------------------------- /src/Core/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/src/Core/Module.php -------------------------------------------------------------------------------- /src/Core/ScriptRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/src/Core/ScriptRenderer.php -------------------------------------------------------------------------------- /src/Core/ViewConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/src/Core/ViewConfig.php -------------------------------------------------------------------------------- /src/DataObject/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/src/DataObject/Configuration.php -------------------------------------------------------------------------------- /src/DataObject/Script.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/src/DataObject/Script.php -------------------------------------------------------------------------------- /src/DataObject/ScriptSnippet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/src/DataObject/ScriptSnippet.php -------------------------------------------------------------------------------- /src/DataObject/Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/src/DataObject/Service.php -------------------------------------------------------------------------------- /src/Exception/PatternNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/src/Exception/PatternNotFound.php -------------------------------------------------------------------------------- /src/Exception/WidgetsNotSupported.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/src/Exception/WidgetsNotSupported.php -------------------------------------------------------------------------------- /src/Service/Configuration/ConfigurationDao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/src/Service/Configuration/ConfigurationDao.php -------------------------------------------------------------------------------- /src/Service/Configuration/ConfigurationDaoInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/src/Service/Configuration/ConfigurationDaoInterface.php -------------------------------------------------------------------------------- /src/Service/Configuration/StorageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/src/Service/Configuration/StorageInterface.php -------------------------------------------------------------------------------- /src/Service/Configuration/YamlStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/src/Service/Configuration/YamlStorage.php -------------------------------------------------------------------------------- /src/Service/Integration/IntegrationScriptBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/src/Service/Integration/IntegrationScriptBuilder.php -------------------------------------------------------------------------------- /src/Service/Integration/IntegrationScriptBuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/src/Service/Integration/IntegrationScriptBuilderInterface.php -------------------------------------------------------------------------------- /src/Service/Integration/IntegrationVersionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/src/Service/Integration/IntegrationVersionFactory.php -------------------------------------------------------------------------------- /src/Service/Integration/IntegrationVersionFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/src/Service/Integration/IntegrationVersionFactoryInterface.php -------------------------------------------------------------------------------- /src/Service/Integration/Pattern/CmpV1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/src/Service/Integration/Pattern/CmpV1.php -------------------------------------------------------------------------------- /src/Service/Integration/Pattern/CmpV2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/src/Service/Integration/Pattern/CmpV2.php -------------------------------------------------------------------------------- /src/Service/Integration/Pattern/CmpV2Legacy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/src/Service/Integration/Pattern/CmpV2Legacy.php -------------------------------------------------------------------------------- /src/Service/Integration/Pattern/CmpV2Tcf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/src/Service/Integration/Pattern/CmpV2Tcf.php -------------------------------------------------------------------------------- /src/Service/Integration/Pattern/CmpV2TcfLegacy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/src/Service/Integration/Pattern/CmpV2TcfLegacy.php -------------------------------------------------------------------------------- /src/Service/Integration/Pattern/Custom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/src/Service/Integration/Pattern/Custom.php -------------------------------------------------------------------------------- /src/Service/Integration/Pattern/IntegrationPatternInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/src/Service/Integration/Pattern/IntegrationPatternInterface.php -------------------------------------------------------------------------------- /src/Service/IntegrationScript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/src/Service/IntegrationScript.php -------------------------------------------------------------------------------- /src/Service/IntegrationScriptInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/src/Service/IntegrationScriptInterface.php -------------------------------------------------------------------------------- /src/Service/ModuleSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/src/Service/ModuleSettings.php -------------------------------------------------------------------------------- /src/Service/ModuleSettingsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/src/Service/ModuleSettingsInterface.php -------------------------------------------------------------------------------- /src/Service/Renderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/src/Service/Renderer.php -------------------------------------------------------------------------------- /src/Service/RendererInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/src/Service/RendererInterface.php -------------------------------------------------------------------------------- /src/Service/ScriptServiceMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/src/Service/ScriptServiceMapper.php -------------------------------------------------------------------------------- /src/Service/ScriptServiceMapperInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/src/Service/ScriptServiceMapperInterface.php -------------------------------------------------------------------------------- /src/Traits/ServiceContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/src/Traits/ServiceContainer.php -------------------------------------------------------------------------------- /tests/Codeception/Acceptance.suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/Codeception/Acceptance.suite.yml -------------------------------------------------------------------------------- /tests/Codeception/Acceptance/BaseCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/Codeception/Acceptance/BaseCest.php -------------------------------------------------------------------------------- /tests/Codeception/Acceptance/ScriptIncludeAdjustmentCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/Codeception/Acceptance/ScriptIncludeAdjustmentCest.php -------------------------------------------------------------------------------- /tests/Codeception/Acceptance/ScriptSnippetAdjustmentCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/Codeception/Acceptance/ScriptSnippetAdjustmentCest.php -------------------------------------------------------------------------------- /tests/Codeception/Acceptance/UsercentricsButtonCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/Codeception/Acceptance/UsercentricsButtonCest.php -------------------------------------------------------------------------------- /tests/Codeception/Acceptance/UsercentricsDeactivateBlockingCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/Codeception/Acceptance/UsercentricsDeactivateBlockingCest.php -------------------------------------------------------------------------------- /tests/Codeception/Acceptance/_bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/Codeception/Acceptance/_bootstrap.php -------------------------------------------------------------------------------- /tests/Codeception/Config/params.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/Codeception/Config/params.php -------------------------------------------------------------------------------- /tests/Codeception/Module/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Codeception/Module/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/Codeception/Module/Config.php -------------------------------------------------------------------------------- /tests/Codeception/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Codeception/Page/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Codeception/Support/AcceptanceTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/Codeception/Support/AcceptanceTester.php -------------------------------------------------------------------------------- /tests/Codeception/Support/Data/dump.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Codeception/Support/Data/fixtures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/Codeception/Support/Data/fixtures.php -------------------------------------------------------------------------------- /tests/Codeception/Support/Helper/Acceptance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/Codeception/Support/Helper/Acceptance.php -------------------------------------------------------------------------------- /tests/Codeception/Support/_generated/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/Integration/Core/ViewConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/Integration/Core/ViewConfigTest.php -------------------------------------------------------------------------------- /tests/Integration/Service/ConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/Integration/Service/ConfigTest.php -------------------------------------------------------------------------------- /tests/Integration/Service/ConfigTestData/ConfigPutTest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/Integration/Service/ConfigTestData/ConfigPutTest.yaml -------------------------------------------------------------------------------- /tests/Integration/Service/ConfigTestData/ConfigReadTest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/Integration/Service/ConfigTestData/ConfigReadTest.yaml -------------------------------------------------------------------------------- /tests/Integration/Service/ConfigTestData/EmptyTest.yaml: -------------------------------------------------------------------------------- 1 | scripts: 2 | services: 3 | -------------------------------------------------------------------------------- /tests/Integration/Service/ConfigTestData/Service1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/Integration/Service/ConfigTestData/Service1.yaml -------------------------------------------------------------------------------- /tests/Integration/Service/ConfigTestData/Snippets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/Integration/Service/ConfigTestData/Snippets.yaml -------------------------------------------------------------------------------- /tests/Integration/Service/IntegrationScriptTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/Integration/Service/IntegrationScriptTest.php -------------------------------------------------------------------------------- /tests/Integration/Service/RendererTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/Integration/Service/RendererTest.php -------------------------------------------------------------------------------- /tests/Integration/Service/ScriptServiceMapperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/Integration/Service/ScriptServiceMapperTest.php -------------------------------------------------------------------------------- /tests/Integration/Service/YamlStorageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/Integration/Service/YamlStorageTest.php -------------------------------------------------------------------------------- /tests/PhpMd/standard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/PhpMd/standard.xml -------------------------------------------------------------------------------- /tests/PhpStan/phpstan-bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/PhpStan/phpstan-bootstrap.php -------------------------------------------------------------------------------- /tests/PhpStan/phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/PhpStan/phpstan.neon -------------------------------------------------------------------------------- /tests/Unit/DataObjects/ConfigurationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/Unit/DataObjects/ConfigurationTest.php -------------------------------------------------------------------------------- /tests/Unit/DataObjects/ScriptSnippetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/Unit/DataObjects/ScriptSnippetTest.php -------------------------------------------------------------------------------- /tests/Unit/DataObjects/ScriptTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/Unit/DataObjects/ScriptTest.php -------------------------------------------------------------------------------- /tests/Unit/DataObjects/ServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/Unit/DataObjects/ServiceTest.php -------------------------------------------------------------------------------- /tests/Unit/Service/Integration/IntegrationScriptBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/Unit/Service/Integration/IntegrationScriptBuilderTest.php -------------------------------------------------------------------------------- /tests/Unit/Service/Integration/IntegrationVersionFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/Unit/Service/Integration/IntegrationVersionFactoryTest.php -------------------------------------------------------------------------------- /tests/Unit/Service/Integration/Pattern/CmpV1Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/Unit/Service/Integration/Pattern/CmpV1Test.php -------------------------------------------------------------------------------- /tests/Unit/Service/Integration/Pattern/CmpV2TcfTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/Unit/Service/Integration/Pattern/CmpV2TcfTest.php -------------------------------------------------------------------------------- /tests/Unit/Service/Integration/Pattern/CmpV2Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/Unit/Service/Integration/Pattern/CmpV2Test.php -------------------------------------------------------------------------------- /tests/Unit/Service/Integration/Pattern/CustomTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/Unit/Service/Integration/Pattern/CustomTest.php -------------------------------------------------------------------------------- /tests/Unit/Service/ModuleSettingsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/Unit/Service/ModuleSettingsTest.php -------------------------------------------------------------------------------- /tests/Unit/UnitTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/Unit/UnitTestCase.php -------------------------------------------------------------------------------- /tests/codeception.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/codeception.yml -------------------------------------------------------------------------------- /tests/phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/phpcs.xml -------------------------------------------------------------------------------- /tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/tests/phpunit.xml -------------------------------------------------------------------------------- /views/admin_twig/de/module_options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/views/admin_twig/de/module_options.php -------------------------------------------------------------------------------- /views/admin_twig/en/module_options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/views/admin_twig/en/module_options.php -------------------------------------------------------------------------------- /views/twig/extensions/themes/default/layout/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/usercentrics/HEAD/views/twig/extensions/themes/default/layout/base.html.twig --------------------------------------------------------------------------------