Exemple #1
0
 public function getParentalIndex()
 {
     $parentalIndex = "#" . str_pad($this->getId(), 3, '0', STR_PAD_LEFT);
     $this->level = 1;
     if ($this->getParent() !== null && $this->getParent() != 0) {
         $p = ColLocationPeer::retrieveByPK($this->getParent());
         $parentalIndex = str_pad($p->getParentalIndex(), 3, '0', STR_PAD_LEFT) . "_" . $parentalIndex;
         $this->level += $p->level;
     }
     $this->parentalIndex = $parentalIndex;
     return $parentalIndex;
 }
Exemple #2
0
 public function getColLocation($con = null)
 {
     include_once 'lib/model/om/BaseColLocationPeer.php';
     if ($this->aColLocation === null && $this->col_location_id !== null) {
         $this->aColLocation = ColLocationPeer::retrieveByPK($this->col_location_id, $con);
     }
     return $this->aColLocation;
 }
Exemple #3
0
 public function getColLocationRelatedByParent($con = null)
 {
     include_once 'lib/model/om/BaseColLocationPeer.php';
     if ($this->aColLocationRelatedByParent === null && $this->parent !== null) {
         $this->aColLocationRelatedByParent = ColLocationPeer::retrieveByPK($this->parent, $con);
     }
     return $this->aColLocationRelatedByParent;
 }