Example #1
0
 function handler_vcard($page, $photos = null)
 {
     $pf = new ProfileFilter(new UFC_Contact(S::user()));
     $vcard = new VCard($photos == 'photos');
     $vcard->addProfiles($pf->getProfiles(null, Profile::FETCH_ALL));
     $vcard->show();
 }
Example #2
0
 function handler_vcard($page, $photos = null)
 {
     global $globals;
     $vcard = new VCard($photos == 'photos', 'Membre du groupe ' . $globals->asso('nom'));
     $vcard->addProfiles($globals->asso()->getMembersFilter()->getProfiles(null, Profile::FETCH_ALL));
     $vcard->show();
 }