Example #1
0
 /**
  * Count products in category
  *
  * @param Category $category Category active record
  * @return integer
  */
 public static function countItems(Category $category)
 {
     return $category->getProductSet(new ARSelectFilter(), false)->getTotalRecordCount();
 }