Ejemplo n.º 1
0
 public function delete($con = null)
 {
     try {
         $con = Propel::getConnection();
         $con->begin();
         //deletes generic document
         $genericDocument = Document::getGenericDocument($this);
         $genericDocument->delete();
         parent::delete();
         $con->commit();
         Document::deleteObjCache($this);
         return true;
     } catch (Exception $e) {
         $con->rollback();
         throw $e;
     }
 }
Ejemplo n.º 2
0
 /**
  * Constructs a new ContactsFolder element
  * @param string $displayName
  * @return null
  */
 public function __construct($displayName)
 {
     parent::__construct(self::NAME, $displayName);
 }
Ejemplo n.º 3
0
 public function getPeer()
 {
     if (self::$peer === null) {
         self::$peer = new FolderPeer();
     }
     return self::$peer;
 }