Horde_Kolab_Storage_List_Cache::getStamp PHP Method

getStamp() public method

Returns the last sync stamp.
public getStamp ( ) : string
return string The last sync stamp.
    public function getStamp()
    {
        $this->_load();
        if (isset($this->_data[self::SYNC])) {
            return $this->_data[self::SYNC];
        }
        return 0;
    }

Usage Example

Ejemplo n.º 1
0
 /**
  * Return the last sync stamp.
  *
  * @return string The stamp.
  */
 public function getStamp()
 {
     return $this->_list_cache->getStamp();
 }