コード例 #1
0
ファイル: sfSimpleCMSSlot.php プロジェクト: net7/Talia-CMS
 public function save($con = null)
 {
     parent::save($con);
     // update the updated_at date of the parent page
     $page = $this->getsfSimpleCMSPage();
     $page->setUpdatedAt(time());
     $page->save();
 }