コード例 #1
0
ファイル: Timestamped.php プロジェクト: kstep/pnut
 public function save()
 {
     $this->modified = time();
     if (!$this->getId()) {
         $this->created = $this->modified;
     }
     parent::save();
 }