Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
module-catalog
Api
ProductRepositoryInterface.php
Go to the documentation of this file.
1
<?php
8
namespace
Magento\Catalog\Api
;
9
14
interface
ProductRepositoryInterface
15
{
26
public
function
save
(\
Magento
\Catalog\Api\Data\
ProductInterface
$product
, $saveOptions =
false
);
27
38
public
function
get
($sku, $editMode =
false
,
$storeId
=
null
, $forceReload =
false
);
39
50
public
function
getById
(
$productId
, $editMode =
false
,
$storeId
=
null
, $forceReload =
false
);
51
59
public
function
delete
(
\Magento\Catalog\Api\Data\ProductInterface
$product
);
60
67
public
function
deleteById
($sku);
68
75
public
function
getList
(\
Magento
\Framework\Api\SearchCriteriaInterface
$searchCriteria
);
76
}
Magento\Catalog\Api
Definition:
AttributeSetManagementTest.php:7
$storeId
$storeId
Definition:
customer_review_with_rating.php:14
$productId
$productId
Definition:
website_attribute_sync.php:26
Magento\Catalog\Api\ProductRepositoryInterface\deleteById
deleteById($sku)
$searchCriteria
$searchCriteria
Definition:
order_rollback.php:16
Magento\Catalog\Api\ProductRepositoryInterface
Definition:
ProductRepositoryInterface.php:14
Magento\Catalog\Api\ProductRepositoryInterface\getById
getById($productId, $editMode=false, $storeId=null, $forceReload=false)
Magento
Magento\Catalog\Api\ProductRepositoryInterface\save
save(\Magento\Catalog\Api\Data\ProductInterface $product, $saveOptions=false)
$product
$product
Definition:
bundle_product_with_not_visible_children.php:22
Magento\Catalog\Api\Data\ProductInterface
Definition:
ProductInterface.php:14
Magento\Catalog\Api\ProductRepositoryInterface\getList
getList(\Magento\Framework\Api\SearchCriteriaInterface $searchCriteria)