IMP_Maillog_Storage_Base::getChanges PHP Method

getChanges() abstract public method

Retrieve changes to the maillog since the provided timestamp.
abstract public getChanges ( integer $ts ) : array
$ts integer Timestamp.
return array An array of messages (IMP_Maillog_Message objects) changed since the provided timestamp.
    public abstract function getChanges($ts);

Usage Example

Beispiel #1
0
 /**
  * Retrieve changes to the maillog since the provided timestamp.
  *
  * @param integer $ts  Timestamp.
  *
  * @return array  An array of messages (IMP_Maillog_Message objects)
  *                changed since the provided timestamp.
  */
 public function getChanges($ts)
 {
     return $this->storage->getChanges($ts);
 }