├── .gitignore ├── Helper └── Data.php ├── LICENSE ├── Model └── Config │ └── Source │ └── Custom.php ├── Observer └── DisableFrontend.php ├── README.md ├── composer.json ├── etc ├── adminhtml │ └── system.xml ├── frontend │ └── events.xml └── module.xml └── registration.php /.gitignore: -------------------------------------------------------------------------------- 1 | /nbproject/* -------------------------------------------------------------------------------- /Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelbm/magento2-disable-frontend/HEAD/Helper/Data.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelbm/magento2-disable-frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /Model/Config/Source/Custom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelbm/magento2-disable-frontend/HEAD/Model/Config/Source/Custom.php -------------------------------------------------------------------------------- /Observer/DisableFrontend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelbm/magento2-disable-frontend/HEAD/Observer/DisableFrontend.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelbm/magento2-disable-frontend/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelbm/magento2-disable-frontend/HEAD/composer.json -------------------------------------------------------------------------------- /etc/adminhtml/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelbm/magento2-disable-frontend/HEAD/etc/adminhtml/system.xml -------------------------------------------------------------------------------- /etc/frontend/events.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelbm/magento2-disable-frontend/HEAD/etc/frontend/events.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelbm/magento2-disable-frontend/HEAD/etc/module.xml -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelbm/magento2-disable-frontend/HEAD/registration.php --------------------------------------------------------------------------------