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);
 }