Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
FilterGroup.php
Go to the documentation of this file.
1 <?php
8 
10 
17 {
18  const FILTERS = 'filters';
19 
25  public function getFilters()
26  {
27  $filters = $this->_get(self::FILTERS);
28  return $filters === null ? [] : $filters;
29  }
30 
38  public function setFilters(array $filters = null)
39  {
40  return $this->setData(self::FILTERS, $filters);
41  }
42 }
$filters
Definition: uploader.phtml:11