Package DE_EPAGES::Catalog::API::Table::CategoryProductMap
interface for table CategoryProductMap
Functions
- DeleteCategoryProductMap
- ExistsCategoryProductMap
- ExistsCategoryProductMapByCategoryID
- GetAllInfoCategoryProductMaps
- GetAllPKeyCategoryProductMaps
- GetInfoCategoryProductMap
- GetInfoCategoryProductMapByCategoryID
- GetInfoCategoryProductMapsByCategoryID
- GetInfoCategoryProductMapsByProductID
- GetPKeyCategoryProductMapByCategoryID
- GetPKeyCategoryProductMapsByCategoryID
- GetPKeyCategoryProductMapsByProductID
- InsertCategoryProductMap
- UpdateCategoryProductMap
DeleteCategoryProductMap
Deletes a(n) CategoryProductMap.
Syntax |
DeleteCategoryProductMap($CategoryProductMapID); DeleteCategoryProductMap($hCategoryProductMap); # if $hCategoryProductMap includes CategoryProductMapID |
Input |
|
ExistsCategoryProductMap
Returns true if the CategoryProductMap exists.
Syntax |
$exists = ExistsCategoryProductMap($CategoryProductMapID); |
Input |
|
Return |
|
ExistsCategoryProductMapByCategoryID
Returns true if a CategoryProductMap by alternate keys CategoryID and ProductID exists.
Syntax |
$CategoryProductMapID = ExistsCategoryProductMapByCategoryID($CategoryID, $ProductID); |
Input |
|
Return |
|
GetAllInfoCategoryProductMaps
Returns all objects of CategoryProductMap.
Syntax |
$ahCategoryProductMapIDs = GetAllInfoCategoryProductMaps(); |
Return |
|
GetAllPKeyCategoryProductMaps
Returns all CategoryProductMap identifiers.
Syntax |
$aCategoryProductMapIDs = GetAllPKeyCategoryProductMaps(); |
Return |
|
GetInfoCategoryProductMap
Returns the CategoryProductMap by identifier.
Syntax |
$hCategoryProductMap = GetInfoCategoryProductMap($CategoryProductMapID); |
Input |
|
Return |
|
GetInfoCategoryProductMapByCategoryID
Returns the object of CategoryProductMap by alternate keys CategoryID and ProductID.
Syntax |
$hCategoryProductMap = GetInfoCategoryProductMapByCategoryID($CategoryID, $ProductID); |
Input |
|
Return |
|
GetInfoCategoryProductMapsByCategoryID
Returns objects of CategoryProductMap by alternate keys CategoryID and ProductID.
Syntax |
$ahCategoryProductMaps = GetInfoCategoryProductMapsByCategoryID($CategoryID, $ProductID); |
Input |
|
Return |
|
GetInfoCategoryProductMapsByProductID
Returns objects of CategoryProductMap by alternate key ProductID.
Syntax |
$ahCategoryProductMaps = GetInfoCategoryProductMapsByProductID($ProductID); |
Input |
|
Return |
|
GetPKeyCategoryProductMapByCategoryID
Returns primary key of CategoryProductMap by alternate keys CategoryID and ProductID.
Syntax |
$CategoryProductMapID = GetPKeyCategoryProductMapByCategoryID($CategoryID, $ProductID); |
Input |
|
Return |
|
GetPKeyCategoryProductMapsByCategoryID
Returns primary keys of CategoryProductMap by alternate keys CategoryID and ProductID.
Syntax |
$aKeys = GetPKeyCategoryProductMapsByCategoryID($CategoryID, $ProductID); |
Input |
|
Return |
|
GetPKeyCategoryProductMapsByProductID
Returns primary keys of CategoryProductMap by alternate key ProductID.
Syntax |
$aKeys = GetPKeyCategoryProductMapsByProductID($ProductID); |
Input |
|
Return |
|
InsertCategoryProductMap
Creates an entry of CategoryProductMap.
Syntax |
$CategoryProductMapID = InsertCategoryProductMap($hCategoryProductMap); |
Input |
|
Return |
|
UpdateCategoryProductMap
Updates a(n) CategoryProductMap if any element was changed.
Syntax |
UpdateCategoryProductMap($CategoryProductMapID, $hCategoryProductMap); UpdateCategoryProductMap($hCategoryProductMap); # if $hCategoryProductMap includes CategoryProductMapID |
Input |
|