├── Controller └── Adminhtml │ └── EasyCache │ └── Refresh.php ├── Plugin ├── CacheOutdatedMessage.php └── ToolbarButtons.php ├── README.md ├── composer.json ├── etc ├── adminhtml │ ├── di.xml │ └── routes.xml └── module.xml ├── registration.php └── view └── adminhtml ├── layout └── default.xml └── web └── js └── ajax-call.js /Controller/Adminhtml/EasyCache/Refresh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchamps/easy-cache-clean/HEAD/Controller/Adminhtml/EasyCache/Refresh.php -------------------------------------------------------------------------------- /Plugin/CacheOutdatedMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchamps/easy-cache-clean/HEAD/Plugin/CacheOutdatedMessage.php -------------------------------------------------------------------------------- /Plugin/ToolbarButtons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchamps/easy-cache-clean/HEAD/Plugin/ToolbarButtons.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchamps/easy-cache-clean/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchamps/easy-cache-clean/HEAD/composer.json -------------------------------------------------------------------------------- /etc/adminhtml/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchamps/easy-cache-clean/HEAD/etc/adminhtml/di.xml -------------------------------------------------------------------------------- /etc/adminhtml/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchamps/easy-cache-clean/HEAD/etc/adminhtml/routes.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchamps/easy-cache-clean/HEAD/etc/module.xml -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchamps/easy-cache-clean/HEAD/registration.php -------------------------------------------------------------------------------- /view/adminhtml/layout/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchamps/easy-cache-clean/HEAD/view/adminhtml/layout/default.xml -------------------------------------------------------------------------------- /view/adminhtml/web/js/ajax-call.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchamps/easy-cache-clean/HEAD/view/adminhtml/web/js/ajax-call.js --------------------------------------------------------------------------------