コード例 #1
0
ファイル: Category.class.php プロジェクト: nonconforme/nreeda
 /**
  * Store
  */
 public function store()
 {
     parent::store();
     RDR_Cleanup::cleanupFeeds();
 }
コード例 #2
0
ファイル: User.class.php プロジェクト: nonconforme/nreeda
 /**
  * On new user set the newest entry id for the newest check
  */
 public function store()
 {
     if (!$this->getId()) {
         $this->setting("init.entry", db()->fetchOne("SELECT MAX(id) FROM RDR_Entry"));
     }
     parent::store();
 }