![]() 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/cartforge.co/vendor/magento/module-backend/Block/Dashboard/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\Dashboard; use Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection; /** * Adminhtml dashboard tab abstract * * @author Magento Core Team <[email protected]> */ abstract class AbstractDashboard extends \Magento\Backend\Block\Widget { /** * @var \Magento\Backend\Helper\Dashboard\AbstractDashboard */ protected $_dataHelper = null; /** * @var \Magento\Reports\Model\ResourceModel\Order\CollectionFactory */ protected $_collectionFactory; /** * @param \Magento\Backend\Block\Template\Context $context * @param \Magento\Reports\Model\ResourceModel\Order\CollectionFactory $collectionFactory * @param array $data */ public function __construct( \Magento\Backend\Block\Template\Context $context, \Magento\Reports\Model\ResourceModel\Order\CollectionFactory $collectionFactory, array $data = [] ) { $this->_collectionFactory = $collectionFactory; parent::__construct($context, $data); } /** * @return array|AbstractCollection|\Magento\Eav\Model\Entity\Collection\Abstract */ public function getCollection() { return $this->getDataHelper()->getCollection(); } /** * @return int */ public function getCount() { return $this->getDataHelper()->getCount(); } /** * Get data helper * * @return \Magento\Backend\Helper\Dashboard\AbstractDashboard */ public function getDataHelper() { return $this->_dataHelper; } /** * @return $this */ protected function _prepareData() { return $this; } /** * @return $this */ protected function _prepareLayout() { $this->_prepareData(); return parent::_prepareLayout(); } }