コード例 #1
0
ファイル: article.class.php プロジェクト: raadhuis/modx-basic
 public function afterSave()
 {
     $afterSave = parent::afterSave();
     if ($this->isPublishing) {
         $this->object->notifyUpdateServices();
         $this->object->sendNotifications();
     }
     $this->clearContainerCache();
     return $afterSave;
 }