Author: Michael Slusarz (slusarz@horde.org)
Ejemplo n.º 1
0
 /**
  */
 public function __get($name)
 {
     switch ($name) {
         case 'recipients':
             return $this->_recipients;
     }
     return parent::__get($name);
 }
Ejemplo n.º 2
0
 /**
  * Add entry specific data to the backend storage.
  *
  * @return array  An array of key -> value pairs to add.
  */
 public function addData()
 {
     return array_merge(parent::addData(), array_filter(array('folder' => $this->folder, 'msgid' => $this->msg_id)));
 }