Пример #1
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     categoryPeer
  */
 public function getPeer()
 {
     if (self::$peer === null) {
         self::$peer = new categoryPeer();
     }
     return self::$peer;
 }
Пример #2
0
 /**
  * Force modifiedColumns to be affected even if the value not changed
  *
  * @see Basecategory::setUpdatedAt()
  */
 public function setUpdatedAt($v)
 {
     parent::setUpdatedAt($v);
     if (!in_array(categoryPeer::UPDATED_AT, $this->modifiedColumns, false)) {
         $this->modifiedColumns[] = categoryPeer::UPDATED_AT;
     }
     return $this;
 }
Пример #3
0
 public function delete(PropelPDO $con = null)
 {
     $this->loadChildsForSave();
     foreach ($this->childs_for_save as $child) {
         $child->delete($con);
     }
     $this->moveEntriesToParent();
     // will remove from entries
     parent::delete($con);
 }