├── .gitattributes ├── .github └── FUNDING.yml ├── Api └── Cms │ ├── SimpleBlock.php │ └── SimplePage.php ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── Setup └── Patch │ └── SimpleDataPatch.php ├── composer.json ├── etc └── module.xml └── registration.php /.gitattributes: -------------------------------------------------------------------------------- 1 | /docs export-ignore 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshust/magento2-module-simpledata/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /Api/Cms/SimpleBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshust/magento2-module-simpledata/HEAD/Api/Cms/SimpleBlock.php -------------------------------------------------------------------------------- /Api/Cms/SimplePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshust/magento2-module-simpledata/HEAD/Api/Cms/SimplePage.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshust/magento2-module-simpledata/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshust/magento2-module-simpledata/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshust/magento2-module-simpledata/HEAD/README.md -------------------------------------------------------------------------------- /Setup/Patch/SimpleDataPatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshust/magento2-module-simpledata/HEAD/Setup/Patch/SimpleDataPatch.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshust/magento2-module-simpledata/HEAD/composer.json -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshust/magento2-module-simpledata/HEAD/etc/module.xml -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markshust/magento2-module-simpledata/HEAD/registration.php --------------------------------------------------------------------------------