ee2b0518ceb82413e511eba8bfa5fcb658743caf
[squirrelmail.git] / class / helper / VCard.class.php
1 <?php
2
3 /**
4 * vCard.class
5 *
6 * Copyright (c) 2002 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * This (will) contain functions needed to vCards.
10 *
11 * http://www.imc.org/pdi/vcard-21.txt
12 *
13 * $Id$
14 */
15
16
17 class VCard {
18
19 function create_vcard ($value_array) {
20
21 return $vcard;
22 }
23
24 function parse_vcard ($vcard) {
25
26 return $array;
27 }
28
29 }
30
31 ?>