Exemple #1
0
 /**
  * Returns an array of Vpdi_Vcard_Impp objects wrapping the IMPP values
  * 
  * @access public
  * @return array
  */
 public function getImpps() {
   $ims = array();
   foreach ($this->getPropertiesByName('IMPP') as $property) {
     $ims[] = Vpdi_Vcard_Impp::decode($property);
   }
   return $ims;
 }