1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
/**
* Copyright © 2015 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\Block\Sidebar;
/**
* Blog sidebar widget trait
*/
trait Widget
{
/**
* Retrieve block sort order
* @return int
*/
public function getSortOrder()
{
if (!$this->hasData('sort_order')) {
$this->setData('sort_order', $this->_scopeConfig->getValue(
'mfblog/sidebar/'.$this->_widgetKey.'/sort_order', \Magento\Store\Model\ScopeInterface::SCOPE_STORE
));
}
return (int) $this->getData('sort_order');
}
/**
* Retrieve block html
*
* @return string
*/
protected function _toHtml()
{
if ($this->_scopeConfig->getValue(
'mfblog/sidebar/'.$this->_widgetKey.'/enabled', \Magento\Store\Model\ScopeInterface::SCOPE_STORE
)) {
return parent::_toHtml();
}
return '';
}
}