Ejemplo n.º 1
0
 function get_recipient_description()
 {
     $people =& get_cached_table("person");
     $name = $people[$this->get_effective_person_id()]["name"];
     if ($this->get_value("metaPerson") === null) {
         return $name;
     } else {
         return sprintf("%s (%s)", reminder::get_metaperson_name($this->get_value("metaPerson")), $name);
     }
 }