/**
  * Get Statuses
  *
  * This is responsible for retrieving the status information for a
  * collection of records.
  *
  * @param array $recordIds The array of record ids to retrieve the status for
  * @param boolean $forSearch whether or not the summary will be shown in search results
  *
  * @return mixed           An array of getStatus() return values on success,
  * a PEAR_Error object otherwise.
  * @access public
  * @author Chris Delis <*****@*****.**>
  */
 public function getStatuses($recordIds, $forSearch = false)
 {
     return $this->driver->getStatuses($recordIds, $forSearch);
 }