Config.php 520 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © 2017 Ihor Vansach (ihor@magefan.com). All rights reserved.
  4. * See LICENSE.txt for license details (http://opensource.org/licenses/osl-3.0.php).
  5. *
  6. * Glory to Ukraine! Glory to the heroes!
  7. */
  8. namespace Magefan\Blog\Helper;
  9. use Magento\Framework\App\Action\Action;
  10. /**
  11. * Magefan Blog Config Helper
  12. */
  13. class Config extends \Magento\Framework\App\Helper\AbstractHelper
  14. {
  15. /**
  16. * Extension enabled config path
  17. */
  18. const XML_PATH_EXTENSION_ENABLED = 'mfblog/general/enabled';
  19. }