Exemplo n.º 1
0
 /**
  * {@inheritDoc}
  */
 protected function evaluateLowerBound()
 {
     // If we are using time filtering, we have to handle it differently.
     if ($this->dateType == 'time') {
         if ($this->getLowerBound()) {
             return $this->runSimpleQuery($this->isLowerInclusive() ? '>=' : '>', date('H:i:s', $this->getLowerBound()));
         }
         return null;
     }
     return parent::evaluateLowerBound();
 }