Speed improvements by using php internal functions and bugfix regarding
[squirrelmail.git] / class / helper / VCard.class.php
CommitLineData
655af203 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 *
c53407bc 11 * http://www.imc.org/pdi/vcard-21.txt
12 *
655af203 13 * $Id$
14 */
15
16
c53407bc 17class VCard {
18
19function create_vcard ($value_array) {
20
21return $vcard;
22}
23
24function parse_vcard ($vcard) {
25
26return $array;
27}
28
29}
30
655af203 31?>