예제 #1
0
파일: item.php 프로젝트: bizanto/Hooked
 public function getRelatedCategoryIds($published = false)
 {
     if ($this->_related_category_ids === null) {
         $this->_related_category_ids = CategoryHelper::getItemsRelatedCategoryIds($this->id, $published);
     }
     return $this->_related_category_ids;
 }