Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Multistore.php
Go to the documentation of this file.
1 <?php
7 
15 class Multistore extends \Magento\Backend\Block\Widget\Grid\Column
16 {
21  public function __construct(\Magento\Backend\Block\Template\Context $context, array $data = [])
22  {
23  parent::__construct($context, $data);
24  }
25 
31  public function isDisplayed()
32  {
33  return !$this->_storeManager->isSingleStoreMode();
34  }
35 }
__construct(\Magento\Backend\Block\Template\Context $context, array $data=[])
Definition: Multistore.php:21