示例#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();
 }