![]() 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/Post/ |
<?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\Post; use Magento\Store\Model\ScopeInterface; /** * Blog post info block */ class Info extends \Magento\Framework\View\Element\Template { /** * Block template file * @var string */ protected $_template = 'Magefan_Blog::post/info.phtml'; /** * Retrieve formated posted date * @var string * @deprecated Use $post->getPublishDate() instead * @return string */ public function getPostedOn($format = 'Y-m-d H:i:s') { return $this->getPost()->getPublishDate($format); } /** * Retrieve 1 if display author information is enabled * @return int */ public function authorEnabled() { return (int) $this->_scopeConfig->getValue( 'mfblog/author/enabled', \Magento\Store\Model\ScopeInterface::SCOPE_STORE ); } /** * Retrieve 1 if author page is enabled * @return int */ public function authorPageEnabled() { return (int) $this->_scopeConfig->getValue( 'mfblog/author/page_enabled', \Magento\Store\Model\ScopeInterface::SCOPE_STORE ); } /** * Retrieve true if magefan comments are enabled * @return bool */ public function magefanCommentsEnabled() { return $this->_scopeConfig->getValue( 'mfblog/post_view/comments/type', \Magento\Store\Model\ScopeInterface::SCOPE_STORE ) == \Magefan\Blog\Model\Config\Source\CommetType::MAGEFAN; } /** * @return bool */ public function viewsCountEnabled() { return (bool)$this->_scopeConfig->getValue( 'mfblog/post_view/views_count/enabled', \Magento\Store\Model\ScopeInterface::SCOPE_STORE ); } }