Replacing tabs with spaces
[squirrelmail.git] / class / helper / VCard.class.php
CommitLineData
655af203 1<?php
2
3/**
4 * vCard.class
5 *
6c84ba1e 6 * Copyright (c) 2003-2005 The SquirrelMail Project Team
655af203 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 *
883d9cd3 13 * @version $Id$
2b646597 14 * @package squirrelmail
655af203 15 */
16
2b646597 17/**
18 * Undocumented class
19 * @package squirrelmail
20 */
c53407bc 21class VCard {
22
23function create_vcard ($value_array) {
24
25return $vcard;
26}
27
28function parse_vcard ($vcard) {
29
30return $array;
31}
32
33}
34
8d8da447 35?>