Esempio n. 1
0
 /**
  * Load a bulk of product data.
  *
  * @param int     $storeId     Store id.
  * @param string  $categoryIds Category ids filter.
  * @param integer $fromId      Load product with id greater than.
  * @param integer $limit       Number of product to get loaded.
  *
  * @return array
  */
 private function getSearchableCategories($storeId, $categoryIds = null, $fromId = 0, $limit = 100)
 {
     return $this->resourceModel->getSearchableCategories($storeId, $categoryIds, $fromId, $limit);
 }