Package DE_EPAGES::Object::API::Object::LastUpdateProfile
object interface for LastUpdateProfile.
Base |
DE_EPAGES::Object::API::Object::Object |
Functions
className
Returns the class name, used for DAL access.
Syntax |
$ClassName = $LastUpdateProfile->className; |
Return |
|
clearLastUpdates
Deletes information about updated objects in the site of a given profile.
Syntax |
$Object->clearLastUpdates( $Site, $UpdatedBefore ); |
Input |
|
dbPackage
Returns the database package, used for DAL access.
Syntax |
$DbPackage = $LastUpdateProfile->dbPackage; |
Return |
|
findLastUpdates
Returns information about updated objects after a given date realated to this profile,
Syntax |
$Iterator = $Object->findLastUpdates( $Site, $UpdatedAfter ); |
Input |
|
Return |
|
getLastUpdate
get last update timestamp for object related to this profile if never touched return undef
Syntax |
$Timestamp = $Profile->getLastUpdate( $Object ); |
Example |
print $StockLevelProfile->getLastUpdate( $Product ); |
Input |
|
Return |
|
getLastUpdates
Returns updated objects after a given date realated to this profile,
Syntax |
$Iterator = $Object->getLastUpdates( $Site, $UpdatedAfter ); |
Input |
|
Return |
|
setLastUpdate
set last update timestamp now for object related to this profile
Syntax |
$Profile->setLastUpdate( $UpdatedObject ); |
Example |
$StockLevelProfile->setLastUpdate( $Product ); |
Input |
|