status() public method

Returns the status of the current folder.
public status ( string $folder ) : array
$folder string Check the status of this folder.
return array An array that contains 'uidvalidity' and 'uidnext'.
コード例 #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);
 }