Horde_Kolab_Storage_Driver::status PHP Method

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'.
    public function status($folder);

Usage Example

Example #1
0
 /**
  * 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);
 }