예제 #1
0
파일: Comment.php 프로젝트: shevron/stoa
 public function save()
 {
     if ($this->_data['created_at'] === null) {
         $this->_data['created_at'] = $_SERVER['REQUEST_TIME'];
     }
     return parent::save();
 }
예제 #2
0
파일: Post.php 프로젝트: shevron/stoa
 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();
 }