コード例 #1
0
ファイル: Category.php プロジェクト: phpink/nami-core-bundle
 /**
  * Get the id of the parent category.
  *
  * @return string
  */
 public function getParentId()
 {
     return $this->parent ? $this->parent->getId() : null;
 }
コード例 #2
0
ファイル: Page.php プロジェクト: phpink/nami-core-bundle
 /**
  * Get the id of the category page.
  *
  * @return string
  */
 public function getCategoryId()
 {
     return $this->category ? $this->category->getId() : null;
 }