コード例 #1
0
ファイル: Contact.php プロジェクト: rodrigofns/ExpressoLivre3
 /**
  * return vcard and convert Addressbook_Model_Contact to vcard if needed
  * 
  * @return string
  */
 protected function _getVCard()
 {
     if ($this->_vcard == null) {
         $this->_vcard = $this->_converter->fromTine20Model($this->getRecord());
     }
     return $this->_vcard->serialize();
 }