12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- /**
- * Copyright © 2017 Ihor Vansach (ihor@magefan.com). All rights reserved.
- * See LICENSE.txt for license details (http://opensource.org/licenses/osl-3.0.php).
- *
- * Glory to Ukraine! Glory to the heroes!
- */
- namespace Magefan\Blog\App\Action;
- /**
- * Blog frontend action controller
- */
- abstract class Action extends \Magento\Framework\App\Action\Action
- {
- /**
- * Retrieve true if blog extension is enabled.
- *
- * @return bool
- */
- protected function moduleEnabled()
- {
- return (bool) $this->getConfigValue(
- \Magefan\Blog\Helper\Config::XML_PATH_EXTENSION_ENABLED,
- \Magento\Store\Model\ScopeInterface::SCOPE_STORE
- );
- }
- /**
- * Retrieve store config value
- *
- * @return string | null | bool
- */
- protected function getConfigValue($path)
- {
- $config = $this->_objectManager->get('\Magento\Framework\App\Config\ScopeConfigInterface');
- return $config->getValue(
- $path,
- \Magento\Store\Model\ScopeInterface::SCOPE_STORE
- );
- }
- /**
- * Throw control to cms_index_noroute action.
- *
- * @return void
- */
- protected function _forwardNoroute()
- {
- $this->_forward('index', 'noroute', 'cms');
- }
- }
|