Package DE_EPAGES::Object::API::Table::LastUpdate
interface for table LastUpdate
Functions
- DeleteLastUpdate
- ExistsLastUpdate
- GetAllInfoLastUpdates
- GetAllPKeyLastUpdates
- GetInfoLastUpdate
- GetInfoLastUpdatesByObjectID
- GetInfoLastUpdatesByProfileID
- GetInfoLastUpdatesBySiteID
- GetLastUpdates
- GetPKeyLastUpdatesByObjectID
- GetPKeyLastUpdatesByProfileID
- GetPKeyLastUpdatesBySiteID
- InsertLastUpdate
- OnDeleteObject
- OnDeleteSite
- SetLastUpdate
- UpdateLastUpdate
DeleteLastUpdate
Deletes a(n) LastUpdate.
Syntax |
DeleteLastUpdate($ObjectID, $ProfileID); DeleteLastUpdate($hLastUpdate); # if $hLastUpdate includes ObjectID, ProfileID |
Input |
|
ExistsLastUpdate
Returns true if the LastUpdate exists.
Syntax |
$exists = ExistsLastUpdate($ObjectID, $ProfileID); |
Input |
|
Return |
|
GetAllInfoLastUpdates
Returns all objects of LastUpdate.
Syntax |
$ahLastUpdates = GetAllInfoLastUpdates(); |
Return |
|
GetAllPKeyLastUpdates
Returns all LastUpdate identifiers.
Syntax |
$ahLastUpdateIDs = GetAllPKeyLastUpdates(); |
Return |
|
GetInfoLastUpdate
Returns the LastUpdate by identifier.
Syntax |
$hLastUpdate = GetInfoLastUpdate($ObjectID, $ProfileID); |
Input |
|
Return |
|
GetInfoLastUpdatesByObjectID
Returns objects of LastUpdate by primary key element ObjectID.
Syntax |
$ahLastUpdates = GetInfoLastUpdatesByObjectID($ObjectID); |
Input |
|
Return |
|
GetInfoLastUpdatesByProfileID
Returns objects of LastUpdate by alternate key ProfileID.
Syntax |
$ahLastUpdates = GetInfoLastUpdatesByProfileID($ProfileID); |
Input |
|
Return |
|
GetInfoLastUpdatesBySiteID
Returns objects of LastUpdate by alternate keys SiteID and ProfileID and LastUpdatedOn.
Syntax |
$ahLastUpdates = GetInfoLastUpdatesBySiteID($SiteID, $ProfileID, $LastUpdatedOn); |
Input |
|
Return |
|
GetLastUpdates
Returns updated objects of a given profile from a site.
Syntax |
$Iterator = GetLastUpdates($SiteID, $ProfileID, $UpdatedAfter); |
Input |
|
Return |
|
GetPKeyLastUpdatesByObjectID
Returns primary keys of LastUpdate by primary key element ObjectID.
Syntax |
$ahKeys = GetPKeyLastUpdatesByObjectID($ObjectID); |
Input |
|
Return |
|
GetPKeyLastUpdatesByProfileID
Returns primary keys of LastUpdate by alternate key ProfileID.
Syntax |
$ahKeys = GetPKeyLastUpdatesByProfileID($ProfileID); |
Input |
|
Return |
|
GetPKeyLastUpdatesBySiteID
Returns primary keys of LastUpdate by alternate keys SiteID and ProfileID and LastUpdatedOn.
Syntax |
$ahKeys = GetPKeyLastUpdatesBySiteID($SiteID, $ProfileID, $LastUpdatedOn); |
Input |
|
Return |
|
InsertLastUpdate
Creates an entry of LastUpdate.
Syntax |
InsertLastUpdate($hLastUpdate); |
Input |
|
OnDeleteObject
Deletes LastUpdate of this model when a(n) Object is deleted.
Syntax |
OnDeleteObject($hParams); |
Input |
|
OnDeleteSite
Deletes LastUpdate of this model when a(n) Site is deleted.
Syntax |
OnDeleteSite($hParams); |
Input |
|
SetLastUpdate
Creates/Updates an entry of LastUpdate with current Timestamp.
Syntax |
SetLastUpdate($hLastUpdate); |
Input |
|
UpdateLastUpdate
Updates a(n) LastUpdate if any element was changed.
Syntax |
UpdateLastUpdate($ObjectID, $ProfileID, $hLastUpdate); UpdateLastUpdate($hLastUpdate); # if $hLastUpdate includes ObjectID, ProfileID |
Input |
|