Example #1
0
 public function setValue($newValue)
 {
     if ($this->check($newValue)) {
         parent::setValue($newValue);
     } else {
         parent::setValue(date('Y-m-d'));
     }
 }
Example #2
0
 public function setValue($newValue)
 {
     parent::setValue($newValue);
     $this->normalizeValue();
 }
Example #3
0
 public function setValue($newValue)
 {
     $this->changed = true;
     parent::setValue($newValue);
 }