getUids() public method

Returns the message ids of the messages in this folder.
public getUids ( string $folder ) : array
$folder string Check the status of this folder.
return array The message ids.
示例#1
0
文件: Base.php 项目: jubinpatel/horde
 /**
  * Returns the message ids of the messages in this folder.
  *
  * @param string $folder Check the status of this folder.
  *
  * @return array The message ids.
  */
 public function getUids($folder)
 {
     return $this->_driver->getUids($folder);
 }