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