![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magefan/module-blog/Block/Sidebar/ |
<?php /** * Copyright © Magefan ([email protected]). All rights reserved. * Please visit Magefan.com for license details (https://magefan.com/end-user-license-agreement). * * Glory to Ukraine! Glory to the heroes! */ namespace Magefan\Blog\Block\Sidebar; use Magento\Store\Model\ScopeInterface; /** * Blog sidebar custom block */ class Custom extends \Magento\Framework\View\Element\Template { use Widget; /** * @var \Magento\Cms\Model\Template\FilterProvider */ protected $filterProvider; /** * Construct * * @param \Magento\Framework\View\Element\Context $context * @param \Magefan\Blog\Model\Url $url * @param array $data */ public function __construct( \Magento\Framework\View\Element\Template\Context $context, \Magento\Cms\Model\Template\FilterProvider $filterProvider, array $data = [] ) { parent::__construct($context, $data); $this->filterProvider = $filterProvider; } /** * @var string */ protected $_widgetKey = 'custom'; /** * Retrieve filtered content * * @return string */ public function getContent() { $key = 'content'; if (!$this->hasData($key)) { $content = $this->_scopeConfig->getValue( 'mfblog/sidebar/'.$this->_widgetKey.'/html', ScopeInterface::SCOPE_STORE ); $content = $this->filterProvider->getPageFilter()->filter( (string) $content ?: '' ); $this->setData($key, $content); } return $this->getData($key); } /** * Get cache key informative items * * @return array */ public function getCacheKeyInfo() { $cacheKeyInfo = parent::getCacheKeyInfo(); $cacheKeyInfo['block_name'] = $this->getNameInLayout(); return $cacheKeyInfo; } }