123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Reports\Block\Adminhtml;
- /**
- * Backend report grid block
- *
- * @api
- * @author Magento Core Team <core@magentocommerce.com>
- * @since 100.0.2
- */
- class Grid extends \Magento\Backend\Block\Widget\Grid
- {
- /**
- * Should Store Switcher block be visible
- *
- * @var bool
- */
- protected $_storeSwitcherVisibility = true;
- /**
- * Should Date Filter block be visible
- *
- * @var bool
- */
- protected $_dateFilterVisibility = true;
- /**
- * Filters array
- *
- * @var array
- */
- protected $_filters = [];
- /**
- * Default filters values
- *
- * @var array
- */
- protected $_defaultFilters = ['report_from' => '', 'report_to' => '', 'report_period' => 'day'];
- /**
- * Sub-report rows count
- *
- * @var int
- */
- protected $_subReportSize = 5;
- /**
- * Errors messages aggregated array
- *
- * @var array
- */
- protected $_errors = [];
- /**
- * Block template file name
- *
- * @var string
- */
- protected $_template = 'Magento_Reports::grid.phtml';
- /**
- * Filter values array
- *
- * @var array
- */
- protected $_filterValues;
- /**
- * Apply sorting and filtering to collection
- *
- * @return $this
- * @SuppressWarnings(PHPMD.CyclomaticComplexity)
- */
- protected function _prepareCollection()
- {
- $filter = $this->getParam($this->getVarNameFilter(), null);
- if (null === $filter) {
- $filter = $this->_defaultFilter;
- }
- if (is_string($filter)) {
- $data = [];
- $filter = base64_decode($filter);
- parse_str(urldecode($filter), $data);
- if (!isset($data['report_from'])) {
- // getting all reports from 2001 year
- $date = (new \DateTime())->setTimestamp(mktime(0, 0, 0, 1, 1, 2001));
- $data['report_from'] = $this->_localeDate->formatDateTime(
- $date,
- \IntlDateFormatter::SHORT,
- \IntlDateFormatter::NONE
- );
- }
- if (!isset($data['report_to'])) {
- // getting all reports from 2001 year
- $date = new \DateTime();
- $data['report_to'] = $this->_localeDate->formatDateTime(
- $date,
- \IntlDateFormatter::SHORT,
- \IntlDateFormatter::NONE
- );
- }
- $this->_setFilterValues($data);
- } elseif ($filter && is_array($filter)) {
- $this->_setFilterValues($filter);
- } elseif (0 !== sizeof($this->_defaultFilter)) {
- $this->_setFilterValues($this->_defaultFilter);
- }
- /** @var $collection \Magento\Reports\Model\ResourceModel\Report\Collection */
- $collection = $this->getCollection();
- if ($collection) {
- $collection->setPeriod($this->getFilter('report_period'));
- if ($this->getFilter('report_from') && $this->getFilter('report_to')) {
- /**
- * Validate from and to date
- */
- try {
- $from = $this->_localeDate->date($this->getFilter('report_from'), null, false, false);
- $to = $this->_localeDate->date($this->getFilter('report_to'), null, false, false);
- $collection->setInterval($from, $to);
- } catch (\Exception $e) {
- $this->_errors[] = __('Invalid date specified');
- }
- }
- $collection->setStoreIds($this->_getAllowedStoreIds());
- if ($this->getSubReportSize() !== null) {
- $collection->setPageSize($this->getSubReportSize());
- }
- $this->_eventManager->dispatch(
- 'adminhtml_widget_grid_filter_collection',
- ['collection' => $this->getCollection(), 'filter_values' => $this->_filterValues]
- );
- }
- return $this;
- }
- /**
- * Get allowed stores
- *
- * @return array|\int[]
- */
- protected function _getAllowedStoreIds()
- {
- /**
- * Getting and saving store ids for website & group
- */
- $storeIds = [];
- if ($this->getRequest()->getParam('store')) {
- $storeIds = [$this->getParam('store')];
- } elseif ($this->getRequest()->getParam('website')) {
- $storeIds = $this->_storeManager->getWebsite($this->getRequest()->getParam('website'))->getStoreIds();
- } elseif ($this->getRequest()->getParam('group')) {
- $storeIds = $storeIds = $this->_storeManager->getGroup(
- $this->getRequest()->getParam('group')
- )->getStoreIds();
- }
- // By default storeIds array contains only allowed stores
- $allowedStoreIds = array_keys($this->_storeManager->getStores());
- // And then array_intersect with post data for prevent unauthorized stores reports
- $storeIds = array_intersect($allowedStoreIds, $storeIds);
- // If selected all websites or unauthorized stores use only allowed
- if (empty($storeIds)) {
- $storeIds = $allowedStoreIds;
- }
- // reset array keys
- $storeIds = array_values($storeIds);
- return $storeIds;
- }
- /**
- * Set filter values
- *
- * @param array $data
- * @return $this
- * @SuppressWarnings(PHPMD.UnusedLocalVariable)
- */
- protected function _setFilterValues($data)
- {
- foreach ($data as $name => $value) {
- $this->setFilter($name, $data[$name]);
- }
- return $this;
- }
- /**
- * Set visibility of store switcher
- *
- * @param bool $visible
- * @codeCoverageIgnore
- * @return void
- */
- public function setStoreSwitcherVisibility($visible = true)
- {
- $this->_storeSwitcherVisibility = $visible;
- }
- /**
- * Return visibility of store switcher
- *
- * @codeCoverageIgnore
- * @return bool
- * @SuppressWarnings(PHPMD.BooleanGetMethodName)
- */
- public function getStoreSwitcherVisibility()
- {
- return $this->_storeSwitcherVisibility;
- }
- /**
- * Return store switcher html
- *
- * @codeCoverageIgnore
- * @return string
- */
- public function getStoreSwitcherHtml()
- {
- return $this->getChildHtml('store_switcher');
- }
- /**
- * Set visibility of date filter
- *
- * @param bool $visible
- * @return void
- * @codeCoverageIgnore
- */
- public function setDateFilterVisibility($visible = true)
- {
- $this->_dateFilterVisibility = $visible;
- }
- /**
- * Return visibility of date filter
- *
- * @codeCoverageIgnore
- * @return bool
- * @SuppressWarnings(PHPMD.BooleanGetMethodName)
- */
- public function getDateFilterVisibility()
- {
- return $this->_dateFilterVisibility;
- }
- /**
- * Return date filter html
- *
- * @codeCoverageIgnore
- * @return string
- */
- public function getDateFilterHtml()
- {
- return $this->getChildHtml('date_filter');
- }
- /**
- * Get periods
- *
- * @return mixed
- */
- public function getPeriods()
- {
- return $this->getCollection()->getPeriods();
- }
- /**
- * Get date format according the locale
- *
- * @return string
- */
- public function getDateFormat()
- {
- return $this->_localeDate->getDateFormat(\IntlDateFormatter::SHORT);
- }
- /**
- * Return refresh button html
- *
- * @codeCoverageIgnore
- * @return string
- */
- public function getRefreshButtonHtml()
- {
- return $this->getChildHtml('refresh_button');
- }
- /**
- * Set filter
- *
- * @param string $name
- * @param string $value
- * @return void
- * @codeCoverageIgnore
- */
- public function setFilter($name, $value)
- {
- if ($name) {
- $this->_filters[$name] = $value;
- }
- }
- /**
- * Get filter by key
- *
- * @param string $name
- * @return string
- */
- public function getFilter($name)
- {
- if (isset($this->_filters[$name])) {
- return $this->_filters[$name];
- } else {
- return $this->getRequest()->getParam($name) ? htmlspecialchars($this->getRequest()->getParam($name)) : '';
- }
- }
- /**
- * Set sub-report rows count
- *
- * @param int $size
- * @return void
- * @codeCoverageIgnore
- */
- public function setSubReportSize($size)
- {
- $this->_subReportSize = $size;
- }
- /**
- * Return sub-report rows count
- *
- * @codeCoverageIgnore
- * @return int
- */
- public function getSubReportSize()
- {
- return $this->_subReportSize;
- }
- /**
- * Retrieve errors
- *
- * @return array
- * @codeCoverageIgnore
- */
- public function getErrors()
- {
- return $this->_errors;
- }
- /**
- * Prepare grid filter buttons
- *
- * @return void
- */
- protected function _prepareFilterButtons()
- {
- $this->addChild(
- 'refresh_button',
- \Magento\Backend\Block\Widget\Button::class,
- ['label' => __('Refresh'), 'onclick' => "{$this->getJsObjectName()}.doFilter();", 'class' => 'task']
- );
- }
- }
|