| Current Path : /home/rtorresani/www/vendor/magento/module-backend/Block/Widget/Grid/Column/ |
| Current File : //home/rtorresani/www/vendor/magento/module-backend/Block/Widget/Grid/Column/Multistore.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Backend\Block\Widget\Grid\Column;
/**
* Grid column block that is displayed only in multistore mode
*
* @api
* @deprecated 100.2.0 in favour of UI component implementation
* @since 100.0.2
*/
class Multistore extends \Magento\Backend\Block\Widget\Grid\Column
{
/**
* Get header css class name
*
* @return string
*/
public function isDisplayed()
{
return !$this->_storeManager->isSingleStoreMode();
}
}