1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Backend\Block\Cache;
- /**
- * @api
- * @since 100.0.2
- */
- class Additional extends \Magento\Backend\Block\Template
- {
- /**
- * Check if application is in production mode
- *
- * @return bool
- */
- public function isInProductionMode()
- {
- return $this->_appState->getMode() === \Magento\Framework\App\State::MODE_PRODUCTION;
- }
- /**
- * @return string
- */
- public function getCleanImagesUrl()
- {
- return $this->getUrl('*/*/cleanImages');
- }
- /**
- * @return string
- */
- public function getCleanMediaUrl()
- {
- return $this->getUrl('*/*/cleanMedia');
- }
- /**
- * @return string
- */
- public function getCleanStaticFilesUrl()
- {
- return $this->getUrl('*/*/cleanStaticFiles');
- }
- }
|