├── Block └── Adminhtml │ └── System │ └── Config │ └── Form │ └── Field │ └── Policy.php ├── Controller └── Report │ └── Index.php ├── Model ├── AutocspData.php ├── ReportProcessor.php ├── ResourceModel │ ├── AutocspData.php │ └── AutocspData │ │ └── Collection.php └── System │ └── Config │ └── Backend │ └── Policies.php ├── Plugin ├── AddCspPoliciesPlugin.php ├── ConfigManagerPlugin.php └── InlineScriptNoncePlugin.php ├── README.md ├── composer.json ├── etc ├── acl.xml ├── adminhtml │ └── system.xml ├── config.xml ├── db_schema.xml ├── db_schema_whitelist.json ├── frontend │ ├── di.xml │ └── routes.xml └── module.xml ├── i18n └── en_US.csv └── registration.php /Block/Adminhtml/System/Config/Form/Field/Policy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquekieckbusch/henriquekieckbusch-module-autocsp/HEAD/Block/Adminhtml/System/Config/Form/Field/Policy.php -------------------------------------------------------------------------------- /Controller/Report/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquekieckbusch/henriquekieckbusch-module-autocsp/HEAD/Controller/Report/Index.php -------------------------------------------------------------------------------- /Model/AutocspData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquekieckbusch/henriquekieckbusch-module-autocsp/HEAD/Model/AutocspData.php -------------------------------------------------------------------------------- /Model/ReportProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquekieckbusch/henriquekieckbusch-module-autocsp/HEAD/Model/ReportProcessor.php -------------------------------------------------------------------------------- /Model/ResourceModel/AutocspData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquekieckbusch/henriquekieckbusch-module-autocsp/HEAD/Model/ResourceModel/AutocspData.php -------------------------------------------------------------------------------- /Model/ResourceModel/AutocspData/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquekieckbusch/henriquekieckbusch-module-autocsp/HEAD/Model/ResourceModel/AutocspData/Collection.php -------------------------------------------------------------------------------- /Model/System/Config/Backend/Policies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquekieckbusch/henriquekieckbusch-module-autocsp/HEAD/Model/System/Config/Backend/Policies.php -------------------------------------------------------------------------------- /Plugin/AddCspPoliciesPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquekieckbusch/henriquekieckbusch-module-autocsp/HEAD/Plugin/AddCspPoliciesPlugin.php -------------------------------------------------------------------------------- /Plugin/ConfigManagerPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquekieckbusch/henriquekieckbusch-module-autocsp/HEAD/Plugin/ConfigManagerPlugin.php -------------------------------------------------------------------------------- /Plugin/InlineScriptNoncePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquekieckbusch/henriquekieckbusch-module-autocsp/HEAD/Plugin/InlineScriptNoncePlugin.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquekieckbusch/henriquekieckbusch-module-autocsp/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquekieckbusch/henriquekieckbusch-module-autocsp/HEAD/composer.json -------------------------------------------------------------------------------- /etc/acl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquekieckbusch/henriquekieckbusch-module-autocsp/HEAD/etc/acl.xml -------------------------------------------------------------------------------- /etc/adminhtml/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquekieckbusch/henriquekieckbusch-module-autocsp/HEAD/etc/adminhtml/system.xml -------------------------------------------------------------------------------- /etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquekieckbusch/henriquekieckbusch-module-autocsp/HEAD/etc/config.xml -------------------------------------------------------------------------------- /etc/db_schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquekieckbusch/henriquekieckbusch-module-autocsp/HEAD/etc/db_schema.xml -------------------------------------------------------------------------------- /etc/db_schema_whitelist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquekieckbusch/henriquekieckbusch-module-autocsp/HEAD/etc/db_schema_whitelist.json -------------------------------------------------------------------------------- /etc/frontend/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquekieckbusch/henriquekieckbusch-module-autocsp/HEAD/etc/frontend/di.xml -------------------------------------------------------------------------------- /etc/frontend/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquekieckbusch/henriquekieckbusch-module-autocsp/HEAD/etc/frontend/routes.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquekieckbusch/henriquekieckbusch-module-autocsp/HEAD/etc/module.xml -------------------------------------------------------------------------------- /i18n/en_US.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquekieckbusch/henriquekieckbusch-module-autocsp/HEAD/i18n/en_US.csv -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquekieckbusch/henriquekieckbusch-module-autocsp/HEAD/registration.php --------------------------------------------------------------------------------