addEmail() public méthode

Add email
public addEmail ( string $address, $type = '' )
$address string The e-mail address
 public function testEmail()
 {
     $vcard = new VCard();
     $vcard->addEmail('*****@*****.**');
     $vcard->addEmail('*****@*****.**', 'WORK');
     $vcard->addEmail('*****@*****.**', 'WORK');
     $vcard->addEmail('*****@*****.**', 'PREF;WORK');
     $parser = new VCardParser($vcard->buildVCard());
     // The VCard class uses a default type of "INTERNET", so we do not test
     // against the "default" key.
     $this->assertEquals($parser->getCardAtIndex(0)->email['INTERNET'][0], '*****@*****.**');
     $this->assertEquals($parser->getCardAtIndex(0)->email['INTERNET;WORK'][0], '*****@*****.**');
     $this->assertEquals($parser->getCardAtIndex(0)->email['INTERNET;WORK'][1], '*****@*****.**');
     $this->assertEquals($parser->getCardAtIndex(0)->email['INTERNET;PREF;WORK'][0], '*****@*****.**');
 }
Exemple #2
0
 /**
  * Test Email
  *
  * @dataProvider emailDataProvider $emails
  */
 public function testEmail($emails = array())
 {
     foreach ($emails as $key => $email) {
         if (is_string($key)) {
             $this->vcard->addEmail($email, $key);
         } else {
             $this->vcard->addEmail($email);
         }
     }
     foreach ($emails as $key => $email) {
         if (is_string($key)) {
             $this->assertContains('EMAIL;INTERNET;' . $key . ':' . $email, $this->vcard->getOutput());
         } else {
             $this->assertContains('EMAIL;INTERNET:' . $email, $this->vcard->getOutput());
         }
     }
 }
/* For licensing terms, see /license.txt */
/**
 * VCard Generator
 * @package chamilo.social
 * @author José Loguercio Silva <*****@*****.**>
 */
require_once '../inc/global.inc.php';
use JeroenDesloovere\VCard\VCard;
api_block_anonymous_users();
if (isset($_REQUEST['userId'])) {
    $userId = intval($_REQUEST['userId']);
} else {
    api_not_allowed();
}
// Return User Info to vCard Export
$userInfo = api_get_user_info($userId, true, false, true);
// Pre-Loaded User Info
$firstname = $userInfo['firstname'];
$lastname = $userInfo['lastname'];
$email = $userInfo['email'];
$phone = $userInfo['phone'];
$language = get_lang('Language') . ': ' . $userInfo['language'];
// Instance the vCard Class
$vcard = new VCard();
// Adding the User Info to the vCard
$vcard->addName($lastname, $firstname);
$vcard->addEmail($email);
$vcard->addPhoneNumber($phone, 'CELL');
$vcard->addNote($language);
// Generate the vCard
return $vcard->download();
Exemple #4
0
require_once __DIR__ . '/../src/VCard.php';
use JeroenDesloovere\VCard\VCard;
// define vcard
$vcard = new VCard();
// define variables
$firstname = 'Jeroen';
$lastname = 'Desloovere';
$additional = '';
$prefix = '';
$suffix = '';
// add personal data
$vcard->addName($lastname, $firstname, $additional, $prefix, $suffix);
// add work data
$vcard->addCompany('Siesqo');
$vcard->addJobtitle('Web Developer');
$vcard->addEmail('*****@*****.**');
$vcard->addPhoneNumber(1234121212, 'PREF;WORK');
$vcard->addPhoneNumber(123456789, 'WORK');
$vcard->addAddress(null, null, 'street', 'worktown', null, 'workpostcode', 'Belgium');
$vcard->addURL('http://www.jeroendesloovere.be');
$vcard->addPhoto(__DIR__ . '/assets/landscape.jpeg');
//$vcard->addPhoto('https://raw.githubusercontent.com/jeroendesloovere/vcard/master/tests/image.jpg');
// return vcard as a string
//return $vcard->getOutput();
// return vcard as a download
return $vcard->download();
// echo message
echo 'A personal vCard is saved in this folder: ' . __DIR__;
// or
// save the card in file in the current folder
// return $vcard->save();
 private function _createVcardData(VCardModel $vcardModel)
 {
     $vcard = new VCard();
     $vcard->addName($vcardModel->lastName, $vcardModel->firstName, $vcardModel->additional, $vcardModel->prefix, $vcardModel->suffix);
     if ($vcardModel->company) {
         $vcard->addCompany($vcardModel->company);
     }
     if ($vcardModel->jobTitle) {
         $vcard->addJobtitle($vcardModel->jobTitle);
     }
     if ($vcardModel->url and is_array($vcardModel->url)) {
         foreach ($vcardModel->url as $url) {
             if ($url instanceof VCard_UrlModel) {
                 if ($url->validate()) {
                     $vcard->addUrl($url->address, $url->type);
                 }
             }
         }
     }
     if ($vcardModel->address and is_array($vcardModel->address)) {
         foreach ($vcardModel->address as $address) {
             if ($address instanceof VCard_AddressModel) {
                 if ($address->validate()) {
                     $vcard->addAddress($address->name, $address->extended, $address->street, $address->city, $address->region, $address->zip, $address->country, $address->type);
                 }
             }
         }
     }
     if ($vcardModel->phoneNumber and is_array($vcardModel->phoneNumber)) {
         foreach ($vcardModel->phoneNumber as $phoneNumber) {
             if ($phoneNumber instanceof VCard_PhoneNumberModel) {
                 if ($phoneNumber->validate()) {
                     $vcard->addPhoneNumber($phoneNumber->number, $phoneNumber->type);
                 }
             }
         }
     }
     if ($vcardModel->email and is_array($vcardModel->email)) {
         foreach ($vcardModel->email as $email) {
             if ($email instanceof VCard_EmailModel) {
                 if ($email->validate()) {
                     $vcard->addEmail($email->address, $email->type);
                 }
             }
         }
     }
     if ($vcardModel->photo) {
         $vcard->addPhoto($vcardModel->photo);
     }
     if ($vcardModel->note) {
         $vcard->addNote($vcardModel->note);
     }
     return $vcard;
 }