PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
plugins
/
ecommerce
/
src
/
Repositories
/
Interfaces
<?php namespace Botble\Ecommerce\Repositories\Interfaces; use Botble\Support\Repositories\Interfaces\RepositoryInterface; use Illuminate\Support\Collection; interface ProductCategoryInterface extends RepositoryInterface { /** * get categories filter by $param. * * @param array $param * $param['active'] => [true,false] * $param['order_by'] => [ASC, DESC] * $param['is_child'] => [true,false, null] * $param['is_feature'] => [true,false, null] * $param['num'] => [int,null] * @return Collection categories model */ public function getCategories(array $param); /** * @return mixed */ public function getDataSiteMap(); /** * @param int $limit */ public function getFeaturedCategories($limit); /** * @param bool $active * @return mixed */ public function getAllCategories($active = true); /** * @param array $conditions * @param array $with * @param array $withCount * @param bool $parentOnly * @return \Illuminate\Support\Collection */ public function getProductCategories( array $conditions = [], array $with = [], array $withCount = [], bool $parentOnly = false ); }
[-] ProductInterface.php
[edit]
[-] CustomerInterface.php
[edit]
[-] ReviewInterface.php
[edit]
[-] OrderInterface.php
[edit]
[-] BrandInterface.php
[edit]
[-] ProductAttributeInterface.php
[edit]
[+]
..
[-] AddressInterface.php
[edit]
[-] ShippingRuleInterface.php
[edit]
[-] ShipmentInterface.php
[edit]
[-] WishlistInterface.php
[edit]
[-] ProductLabelInterface.php
[edit]
[-] GroupedProductInterface.php
[edit]
[-] ProductAttributeSetInterface.php
[edit]
[-] ShippingRuleItemInterface.php
[edit]
[-] ShippingInterface.php
[edit]
[-] OrderHistoryInterface.php
[edit]
[-] ProductCategoryInterface.php
[edit]
[-] ProductTagInterface.php
[edit]
[-] ProductVariationItemInterface.php
[edit]
[-] FlashSaleInterface.php
[edit]
[-] CurrencyInterface.php
[edit]
[-] ShipmentHistoryInterface.php
[edit]
[-] OrderAddressInterface.php
[edit]
[-] StoreLocatorInterface.php
[edit]
[-] TaxInterface.php
[edit]
[-] ProductCollectionInterface.php
[edit]
[-] DiscountInterface.php
[edit]
[-] OrderProductInterface.php
[edit]
[-] ProductVariationInterface.php
[edit]