Package DE_EPAGES::WebInterfacePoolDB::API::Table::Site
interface for table Site
@EXPORT_OK |
Functions
- DeleteSite
- ExistsSite
- ExistsSiteByGUID
- ExistsSiteByStoreID
- GetAllInfoSites
- GetAllPKeySites
- GetInfoSite
- GetInfoSiteByGUID
- GetInfoSiteByStoreID
- GetInfoSitesByGUID
- GetInfoSitesByStoreID
- GetPKeySiteByGUID
- GetPKeySiteByStoreID
- GetPKeySitesByGUID
- GetPKeySitesByStoreID
- InsertSite
- UpdateSite
DeleteSite
Deletes a(n) Site.
Syntax |
DeleteSite($SiteID); DeleteSite($hSite); # if $hSite includes SiteID |
Input |
|
ExistsSite
Returns true if the Site exists.
Syntax |
$exists = ExistsSite($SiteID); |
Input |
|
Return |
|
ExistsSiteByGUID
Returns true if a Site by alternate key GUID exists.
Syntax |
$SiteID = ExistsSiteByGUID($GUID); |
Input |
|
Return |
|
ExistsSiteByStoreID
Returns true if a Site by alternate keys StoreID and ObjectPath exists.
Syntax |
$SiteID = ExistsSiteByStoreID($StoreID, $ObjectPath); |
Input |
|
Return |
|
GetAllInfoSites
Returns all objects of Site.
Syntax |
$ahSites = GetAllInfoSites(); |
Return |
|
GetAllPKeySites
Returns all Site identifiers.
Syntax |
$aSiteIDs = GetAllPKeySites(); |
Return |
|
GetInfoSite
Returns the Site by identifier.
Syntax |
$hSite = GetInfoSite($SiteID); |
Input |
|
Return |
|
GetInfoSiteByGUID
Returns the object of Site by alternate key GUID.
Syntax |
$hSite = GetInfoSiteByGUID($GUID); |
Input |
|
Return |
|
GetInfoSiteByStoreID
Returns the object of Site by alternate keys StoreID and ObjectPath.
Syntax |
$hSite = GetInfoSiteByStoreID($StoreID, $ObjectPath); |
Input |
|
Return |
|
GetInfoSitesByGUID
Returns objects of Site by alternate key GUID.
Syntax |
$ahSites = GetInfoSitesByGUID($GUID); |
Input |
|
Return |
|
GetInfoSitesByStoreID
Returns objects of Site by alternate keys StoreID and ObjectPath.
Syntax |
$ahSites = GetInfoSitesByStoreID($StoreID, $ObjectPath); |
Input |
|
Return |
|
GetPKeySiteByGUID
Returns primary key of Site by alternate key GUID.
Syntax |
$SiteID = GetPKeySiteByGUID($GUID); |
Input |
|
Return |
|
GetPKeySiteByStoreID
Returns primary key of Site by alternate keys StoreID and ObjectPath.
Syntax |
$SiteID = GetPKeySiteByStoreID($StoreID, $ObjectPath); |
Input |
|
Return |
|
GetPKeySitesByGUID
Returns primary keys of Site by alternate key GUID.
Syntax |
$aKeys = GetPKeySitesByGUID($GUID); |
Input |
|
Return |
|
GetPKeySitesByStoreID
Returns primary keys of Site by alternate keys StoreID and ObjectPath.
Syntax |
$aKeys = GetPKeySitesByStoreID($StoreID, $ObjectPath); |
Input |
|
Return |
|
InsertSite
Creates an entry of Site.
Syntax |
$SiteID = InsertSite($hSite); |
Input |
|
Return |
|
UpdateSite
Updates a(n) Site if any element was changed.
Syntax |
UpdateSite($SiteID, $hSite); UpdateSite($hSite); # if $hSite includes SiteID |
Input |
|
Return |
|