Getting ready for 1.4.0 RC1
[squirrelmail.git] / class / helper / VCard.class.php
... / ...
CommitLineData
1<?php
2
3/**
4 * vCard.class
5 *
6 * Copyright (c) 2003 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
17class VCard {
18
19function create_vcard ($value_array) {
20
21return $vcard;
22}
23
24function parse_vcard ($vcard) {
25
26return $array;
27}
28
29}
30
31?>