Example #1
0
 public function save()
 {
     if ($this->_data['created_at'] === null) {
         $this->_data['created_at'] = $_SERVER['REQUEST_TIME'];
     }
     return parent::save();
 }
Example #2
0
 public function save()
 {
     $this->_data['normalized_title'] = self::_normalizeTitle($this->_data['title']);
     if ($this->_data['created_at'] === null) {
         $this->_data['created_at'] = $_SERVER['REQUEST_TIME'];
     }
     return parent::save();
 }