123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Backend\Block\Widget;
- /**
- * Backend grid widget block
- *
- * @api
- * @deprecated 100.2.0 in favour of UI component implementation
- * @method string getRowClickCallback() getRowClickCallback()
- * @method \Magento\Backend\Block\Widget\Grid setRowClickCallback(string $value)
- * @SuppressWarnings(PHPMD.TooManyFields)
- * @since 100.0.2
- */
- class Grid extends \Magento\Backend\Block\Widget
- {
- /**
- * Page and sorting var names
- *
- * @var string
- */
- protected $_varNameLimit = 'limit';
- /**
- * @var string
- */
- protected $_varNamePage = 'page';
- /**
- * @var string
- */
- protected $_varNameSort = 'sort';
- /**
- * @var string
- */
- protected $_varNameDir = 'dir';
- /**
- * @var string
- */
- protected $_varNameFilter = 'filter';
- /**
- * @var int
- */
- protected $_defaultLimit = 20;
- /**
- * @var int
- */
- protected $_defaultPage = 1;
- /**
- * @var bool|string
- */
- protected $_defaultSort = false;
- /**
- * @var string
- */
- protected $_defaultDir = 'desc';
- /**
- * @var array
- */
- protected $_defaultFilter = [];
- /**
- * Empty grid text
- *
- * @var string|null
- */
- protected $_emptyText;
- /**
- * Empty grid text CSS class
- *
- * @var string|null
- */
- protected $_emptyTextCss = 'empty-text';
- /**
- * Pager visibility
- *
- * @var boolean
- */
- protected $_pagerVisibility = true;
- /**
- * Massage block visibility
- *
- * @var boolean
- */
- protected $_messageBlockVisibility = false;
- /**
- * Should parameters be saved in session
- *
- * @var bool
- */
- protected $_saveParametersInSession = false;
- /**
- * Count totals
- *
- * @var boolean
- */
- protected $_countTotals = false;
- /**
- * Totals
- *
- * @var \Magento\Framework\DataObject
- */
- protected $_varTotals;
- /**
- * @var string
- */
- protected $_template = 'Magento_Backend::widget/grid.phtml';
- /**
- * @var \Magento\Backend\Model\Session
- */
- protected $_backendSession;
- /**
- * @var \Magento\Backend\Helper\Data
- */
- protected $_backendHelper;
- /**
- * @param \Magento\Backend\Block\Template\Context $context
- * @param \Magento\Backend\Helper\Data $backendHelper
- * @param array $data
- */
- public function __construct(
- \Magento\Backend\Block\Template\Context $context,
- \Magento\Backend\Helper\Data $backendHelper,
- array $data = []
- ) {
- $this->_backendHelper = $backendHelper;
- $this->_backendSession = $context->getBackendSession();
- parent::__construct($context, $data);
- }
- /**
- * Internal constructor, that is called from real constructor
- *
- * @return void
- *
- * @SuppressWarnings(PHPMD.NPathComplexity)
- */
- protected function _construct()
- {
- parent::_construct();
- if (!$this->getRowClickCallback()) {
- $this->setRowClickCallback('openGridRow');
- }
- if ($this->hasData('id')) {
- $this->setId($this->getData('id'));
- }
- if ($this->hasData('default_sort')) {
- $this->setDefaultSort($this->getData('default_sort'));
- }
- if ($this->hasData('default_dir')) {
- $this->setDefaultDir($this->getData('default_dir'));
- }
- if ($this->hasData('save_parameters_in_session')) {
- $this->setSaveParametersInSession($this->getData('save_parameters_in_session'));
- }
- $this->setPagerVisibility(
- $this->hasData('pager_visibility') ? (bool)$this->getData('pager_visibility') : true
- );
- $this->setData('use_ajax', $this->hasData('use_ajax') ? (bool)$this->getData('use_ajax') : false);
- }
- /**
- * Set collection object
- *
- * @param \Magento\Framework\Data\Collection $collection
- * @return void
- */
- public function setCollection($collection)
- {
- $this->setData('dataSource', $collection);
- }
- /**
- * Get collection object
- *
- * @return \Magento\Framework\Data\Collection
- */
- public function getCollection()
- {
- return $this->getData('dataSource');
- }
- /**
- * Retrieve column set block
- *
- * @return \Magento\Backend\Block\Widget\Grid\ColumnSet
- */
- public function getColumnSet()
- {
- return $this->getChildBlock('grid.columnSet');
- }
- /**
- * Retrieve export block
- *
- * @throws \Magento\Framework\Exception\LocalizedException
- * @return \Magento\Framework\View\Element\AbstractBlock|bool
- */
- public function getExportBlock()
- {
- if (!$this->getChildBlock('grid.export')) {
- throw new \Magento\Framework\Exception\LocalizedException(
- __('Export block for grid %1 is not defined', $this->getNameInLayout())
- );
- }
- return $this->getChildBlock('grid.export');
- }
- /**
- * Retrieve list of grid columns
- *
- * @return array
- */
- public function getColumns()
- {
- return $this->getColumnSet()->getColumns();
- }
- /**
- * Count grid columns
- *
- * @return int
- */
- public function getColumnCount()
- {
- return count($this->getColumns());
- }
- /**
- * Retrieve column by id
- *
- * @param string $columnId
- * @return \Magento\Framework\View\Element\AbstractBlock|bool
- */
- public function getColumn($columnId)
- {
- return $this->getColumnSet()->getChildBlock($columnId);
- }
- /**
- * Process column filtration values
- *
- * @param mixed $data
- * @return $this
- */
- protected function _setFilterValues($data)
- {
- foreach ($this->getColumns() as $columnId => $column) {
- if (isset(
- $data[$columnId]
- ) && (is_array(
- $data[$columnId]
- ) && !empty($data[$columnId]) || strlen(
- $data[$columnId]
- ) > 0) && $column->getFilter()
- ) {
- $column->getFilter()->setValue($data[$columnId]);
- $this->_addColumnFilterToCollection($column);
- }
- }
- return $this;
- }
- /**
- * Add column filtering conditions to collection
- *
- * @param \Magento\Backend\Block\Widget\Grid\Column $column
- * @return $this
- */
- protected function _addColumnFilterToCollection($column)
- {
- if ($this->getCollection()) {
- $field = $column->getFilterIndex() ? $column->getFilterIndex() : $column->getIndex();
- if ($column->getFilterConditionCallback()) {
- call_user_func($column->getFilterConditionCallback(), $this->getCollection(), $column);
- } else {
- $condition = $column->getFilter()->getCondition();
- if ($field && isset($condition)) {
- $this->getCollection()->addFieldToFilter($field, $condition);
- }
- }
- }
- return $this;
- }
- /**
- * Sets sorting order by some column
- *
- * @param \Magento\Backend\Block\Widget\Grid\Column $column
- * @return $this
- */
- protected function _setCollectionOrder($column)
- {
- $collection = $this->getCollection();
- if ($collection) {
- $columnIndex = $column->getFilterIndex() ? $column->getFilterIndex() : $column->getIndex();
- $collection->setOrder($columnIndex, strtoupper($column->getDir()));
- }
- return $this;
- }
- /**
- * Get prepared collection
- *
- * @return \Magento\Framework\Data\Collection
- */
- public function getPreparedCollection()
- {
- $this->_prepareCollection();
- return $this->getCollection();
- }
- /**
- * Apply sorting and filtering to collection
- *
- * @return $this
- * @SuppressWarnings(PHPMD.CyclomaticComplexity)
- */
- protected function _prepareCollection()
- {
- if ($this->getCollection()) {
- $this->_preparePage();
- $columnId = $this->getParam($this->getVarNameSort(), $this->_defaultSort);
- $dir = $this->getParam($this->getVarNameDir(), $this->_defaultDir);
- $filter = $this->getParam($this->getVarNameFilter(), null);
- if ($filter === null) {
- $filter = $this->_defaultFilter;
- }
- if (is_string($filter)) {
- $data = $this->_backendHelper->prepareFilterString($filter);
- $data = array_merge($data, (array)$this->getRequest()->getPost($this->getVarNameFilter()));
- $this->_setFilterValues($data);
- } elseif ($filter && is_array($filter)) {
- $this->_setFilterValues($filter);
- } elseif (0 !== sizeof($this->_defaultFilter)) {
- $this->_setFilterValues($this->_defaultFilter);
- }
- if ($this->getColumn($columnId) && $this->getColumn($columnId)->getIndex()) {
- $dir = strtolower($dir) == 'desc' ? 'desc' : 'asc';
- $this->getColumn($columnId)->setDir($dir);
- $this->_setCollectionOrder($this->getColumn($columnId));
- }
- }
- return $this;
- }
- /**
- * Apply pagination to collection
- *
- * @return void
- */
- protected function _preparePage()
- {
- $this->getCollection()->setPageSize((int)$this->getParam($this->getVarNameLimit(), $this->_defaultLimit));
- $this->getCollection()->setCurPage((int)$this->getParam($this->getVarNamePage(), $this->_defaultPage));
- }
- /**
- * Initialize grid
- *
- * @return void
- */
- protected function _prepareGrid()
- {
- $this->_eventManager->dispatch(
- 'backend_block_widget_grid_prepare_grid_before',
- ['grid' => $this, 'collection' => $this->getCollection()]
- );
- if ($this->getChildBlock('grid.massaction') && $this->getChildBlock('grid.massaction')->isAvailable()) {
- $this->getChildBlock('grid.massaction')->prepareMassactionColumn();
- }
- $this->_prepareCollection();
- if ($this->hasColumnRenderers()) {
- foreach ($this->getColumnRenderers() as $renderer => $rendererClass) {
- $this->getColumnSet()->setRendererType($renderer, $rendererClass);
- }
- }
- if ($this->hasColumnFilters()) {
- foreach ($this->getColumnFilters() as $filter => $filterClass) {
- $this->getColumnSet()->setFilterType($filter, $filterClass);
- }
- }
- $this->getColumnSet()->setSortable($this->getSortable());
- $this->_prepareFilterButtons();
- }
- /**
- * Get massaction block
- *
- * @return bool|\Magento\Framework\View\Element\AbstractBlock
- */
- public function getMassactionBlock()
- {
- return $this->getChildBlock('grid.massaction');
- }
- /**
- * Prepare grid filter buttons
- *
- * @return void
- */
- protected function _prepareFilterButtons()
- {
- $this->setChild(
- 'reset_filter_button',
- $this->getLayout()->createBlock(
- \Magento\Backend\Block\Widget\Button::class
- )->setData(
- [
- 'label' => __('Reset Filter'),
- 'onclick' => $this->getJsObjectName() . '.resetFilter()',
- 'class' => 'action-reset action-tertiary'
- ]
- )->setDataAttribute(['action' => 'grid-filter-reset'])
- );
- $this->setChild(
- 'search_button',
- $this->getLayout()->createBlock(
- \Magento\Backend\Block\Widget\Button::class
- )->setData(
- [
- 'label' => __('Search'),
- 'onclick' => $this->getJsObjectName() . '.doFilter()',
- 'class' => 'action-secondary',
- ]
- )->setDataAttribute(['action' => 'grid-filter-apply'])
- );
- }
- /**
- * Initialize grid before rendering
- *
- * @return $this
- */
- protected function _beforeToHtml()
- {
- $this->_prepareGrid();
- return parent::_beforeToHtml();
- }
- /**
- * Retrieve limit request key
- *
- * @return string
- */
- public function getVarNameLimit()
- {
- return $this->_varNameLimit;
- }
- /**
- * Retrieve page request key
- *
- * @return string
- */
- public function getVarNamePage()
- {
- return $this->_varNamePage;
- }
- /**
- * Retrieve sort request key
- *
- * @return string
- */
- public function getVarNameSort()
- {
- return $this->_varNameSort;
- }
- /**
- * Retrieve sort direction request key
- *
- * @return string
- */
- public function getVarNameDir()
- {
- return $this->_varNameDir;
- }
- /**
- * Retrieve filter request key
- *
- * @return string
- */
- public function getVarNameFilter()
- {
- return $this->_varNameFilter;
- }
- /**
- * Set Limit request key
- *
- * @param string $name
- * @return $this
- */
- public function setVarNameLimit($name)
- {
- $this->_varNameLimit = $name;
- return $this;
- }
- /**
- * Set Page request key
- *
- * @param string $name
- * @return $this
- */
- public function setVarNamePage($name)
- {
- $this->_varNamePage = $name;
- return $this;
- }
- /**
- * Set Sort request key
- *
- * @param string $name
- * @return $this
- */
- public function setVarNameSort($name)
- {
- $this->_varNameSort = $name;
- return $this;
- }
- /**
- * Set Sort Direction request key
- *
- * @param string $name
- * @return $this
- */
- public function setVarNameDir($name)
- {
- $this->_varNameDir = $name;
- return $this;
- }
- /**
- * Set Filter request key
- *
- * @param string $name
- * @return $this
- */
- public function setVarNameFilter($name)
- {
- $this->_varNameFilter = $name;
- return $this;
- }
- /**
- * Set visibility of pager
- *
- * @param bool $visible
- * @return $this
- */
- public function setPagerVisibility($visible = true)
- {
- $this->_pagerVisibility = $visible;
- return $this;
- }
- /**
- * Return visibility of pager
- *
- * @return bool
- * @SuppressWarnings(PHPMD.BooleanGetMethodName)
- */
- public function getPagerVisibility()
- {
- return $this->_pagerVisibility;
- }
- /**
- * Set visibility of message blocks
- *
- * @param bool $visible
- * @return void
- */
- public function setMessageBlockVisibility($visible = true)
- {
- $this->_messageBlockVisibility = $visible;
- }
- /**
- * Return visibility of message blocks
- *
- * @return bool
- * @SuppressWarnings(PHPMD.BooleanGetMethodName)
- */
- public function getMessageBlockVisibility()
- {
- return $this->_messageBlockVisibility;
- }
- /**
- * Set default limit
- *
- * @param int $limit
- * @return $this
- */
- public function setDefaultLimit($limit)
- {
- $this->_defaultLimit = $limit;
- return $this;
- }
- /**
- * Set default page
- *
- * @param int $page
- * @return $this
- */
- public function setDefaultPage($page)
- {
- $this->_defaultPage = $page;
- return $this;
- }
- /**
- * Set default sort
- *
- * @param string $sort
- * @return $this
- */
- public function setDefaultSort($sort)
- {
- $this->_defaultSort = $sort;
- return $this;
- }
- /**
- * Set default direction
- *
- * @param string $dir
- * @return $this
- */
- public function setDefaultDir($dir)
- {
- $this->_defaultDir = $dir;
- return $this;
- }
- /**
- * Set default filter
- *
- * @param string $filter
- * @return $this
- */
- public function setDefaultFilter($filter)
- {
- $this->_defaultFilter = $filter;
- return $this;
- }
- /**
- * Check whether grid container should be displayed
- *
- * @return bool
- */
- public function canDisplayContainer()
- {
- if ($this->getRequest()->getQuery('ajax')) {
- return false;
- }
- return true;
- }
- /**
- * Retrieve grid reload url
- *
- * @return string;
- */
- public function getGridUrl()
- {
- return $this->hasData('grid_url') ? $this->getData('grid_url') : $this->getAbsoluteGridUrl();
- }
- /**
- * Grid url getter
- *
- * Version of getGridUrl() but with parameters
- *
- * @param array $params url parameters
- * @return string current grid url
- */
- public function getAbsoluteGridUrl($params = [])
- {
- return $this->getCurrentUrl($params);
- }
- /**
- * Retrieve grid
- *
- * @param string $paramName
- * @param mixed $default
- * @return mixed
- */
- public function getParam($paramName, $default = null)
- {
- $sessionParamName = $this->getId() . $paramName;
- if ($this->getRequest()->has($paramName)) {
- $param = $this->getRequest()->getParam($paramName);
- if ($this->_saveParametersInSession) {
- $this->_backendSession->setData($sessionParamName, $param);
- }
- return $param;
- } elseif ($this->_saveParametersInSession && ($param = $this->_backendSession->getData($sessionParamName))) {
- return $param;
- }
- return $default;
- }
- /**
- * Set whether grid parameters should be saved in session
- *
- * @param bool $flag
- * @return $this
- */
- public function setSaveParametersInSession($flag)
- {
- $this->_saveParametersInSession = $flag;
- return $this;
- }
- /**
- * Retrieve grid javascript object name
- *
- * @return string
- */
- public function getJsObjectName()
- {
- return preg_replace("~[^a-z0-9_]*~i", '', $this->getId()) . 'JsObject';
- }
- /**
- * Set count totals
- *
- * @param bool $count
- * @return $this
- */
- public function setCountTotals($count = true)
- {
- $this->_countTotals = $count;
- return $this;
- }
- /**
- * Return count totals
- *
- * @return bool
- * @SuppressWarnings(PHPMD.BooleanGetMethodName)
- */
- public function getCountTotals()
- {
- return $this->_countTotals;
- }
- /**
- * Set totals
- *
- * @param \Magento\Framework\DataObject $totals
- * @return void
- */
- public function setTotals(\Magento\Framework\DataObject $totals)
- {
- $this->_varTotals = $totals;
- }
- /**
- * Retrieve totals
- *
- * @return \Magento\Framework\DataObject
- */
- public function getTotals()
- {
- return $this->_varTotals;
- }
- /**
- * Generate list of grid buttons
- *
- * @return string
- */
- public function getMainButtonsHtml()
- {
- $html = '';
- if ($this->getColumnSet()->isFilterVisible()) {
- $html .= $this->getSearchButtonHtml();
- $html .= $this->getResetFilterButtonHtml();
- }
- return $html;
- }
- /**
- * Generate reset button
- *
- * @return string
- */
- public function getResetFilterButtonHtml()
- {
- return $this->getChildHtml('reset_filter_button');
- }
- /**
- * Generate search button
- *
- * @return string
- */
- public function getSearchButtonHtml()
- {
- return $this->getChildHtml('search_button');
- }
- }
|