public function preDelete(PropelPDO $con = null)
 {
     parent::preDelete($con);
     $this->setTitle('foo');
     return false;
 }
 public function postDelete(PropelPDO $con = null)
 {
     parent::postDelete($con);
     $this->setTitle('post-deleted');
     $this->save($con);
 }