示例#1
0
 /**
  * Get the id of the parent category.
  *
  * @return integer
  */
 public function getParentId()
 {
     return $this->parent ? $this->parent->getId() : null;
 }
示例#2
0
 /**
  * Get the id of the category page.
  *
  * @return int
  */
 public function getCategoryId()
 {
     return $this->category ? $this->category->getId() : null;
 }