Horde_Kolab_Storage_Driver::status PHP 메소드

status() 공개 메소드

Returns the status of the current folder.
public status ( string $folder ) : array
$folder string Check the status of this folder.
리턴 array An array that contains 'uidvalidity' and 'uidnext'.
    public function status($folder);

Usage Example

예제 #1
0
파일: Base.php 프로젝트: jubinpatel/horde
 /**
  * Returns the status of the current folder.
  *
  * @param string $folder Check the status of this folder.
  *
  * @return array An array that contains 'uidvalidity' and 'uidnext'.
  */
 public function status($folder)
 {
     return $this->_driver->status($folder);
 }