Author: Michael Slusarz (slusarz@horde.org)
Inheritance: extends IMP_Indices
Example #1
0
 /**
  * Return the list of preview UIDs for the current index.
  *
  * @return array  List of objects. Each object has 2 properties: mbox and
  *                uid.
  */
 public function previewUids()
 {
     $buid = $this->indices->buids->getSingle();
     $uid = $this->indices->getSingle();
     $puids = array(array('mbox' => $buid[0]->form_to, 'uid' => $buid[1]));
     if ($buid[0] != $uid[0]) {
         $puids[] = array('mbox' => $uid[0]->form_to, 'uid' => $uid[1]);
     }
     return $puids;
 }
Example #2
0
 /**
  * Returns the IMAP mailbox for the current message.
  *
  * @return IMP_Mailbox  The message mailbox.
  */
 public function getMailbox()
 {
     list($mbox, ) = $this->_indices->getSingle();
     return $mbox;
 }