/**
  * Build the Attribute object
  * 
  * @param array $data
  * 
  * @throws \BadMethodCallException
  */
 public function __construct(array $data)
 {
     // Treatment of annotation data
     if (isset($data['value'])) {
         $this->name = $data['value'];
         unset($data['value']);
     }
     parent::__construct($data);
 }
Ejemplo n.º 2
0
 public function postUpdate(PropelPDO $con = null)
 {
     $objectDeleted = false;
     if ($this->isColumnModified(AnnotationPeer::STATUS) && $this->getStatus() == AnnotationStatus::ANNOTATION_STATUS_DELETED) {
         $objectDeleted = true;
     }
     $ret = parent::postUpdate($con);
     if ($objectDeleted) {
         kEventsManager::raiseEvent(new kObjectDeletedEvent($this));
     }
     return $ret;
 }
Ejemplo n.º 3
0
 /**
  * Returns a peer instance associated with this om.
  *
  * Since Peer classes are not to have any instance attributes, this method returns the
  * same instance for all member of this class. The method could therefore
  * be static, but this would prevent one from overriding the behavior.
  *
  * @return     AnnotationPeer
  */
 public function getPeer()
 {
     if (self::$peer === null) {
         self::$peer = new AnnotationPeer();
     }
     return self::$peer;
 }