Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
DateApplier.php
Go to the documentation of this file.
1 <?php
7 
13 {
19  public function applyDate($select, $now)
20  {
21  $select->where(
22  'from_date is null or from_date <= ?',
23  $now
24  )->where(
25  'to_date is null or to_date >= ?',
26  $now
27  );
28  }
29 }