Horde_Kolab_Storage_List_Cache::getStamp PHP 메소드

getStamp() 공개 메소드

Returns the last sync stamp.
public getStamp ( ) : string
리턴 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

예제 #1
0
파일: Cache.php 프로젝트: jubinpatel/horde
 /**
  * Return the last sync stamp.
  *
  * @return string The stamp.
  */
 public function getStamp()
 {
     return $this->_list_cache->getStamp();
 }