better fix for bug #812690
[squirrelmail.git] / class / helper / VCard.class.php
index cb79f8133f11a4d53ea2f0d8741d5f1cc100507d..29fb896fb18f3b76333104933d515a46e7cdfa73 100644 (file)
@@ -3,13 +3,29 @@
 /**
  * vCard.class
  *
- * Copyright (c) 2002 The SquirrelMail Project Team
+ * Copyright (c) 2003 The SquirrelMail Project Team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
  * This (will) contain functions needed to vCards.
  *
+ * http://www.imc.org/pdi/vcard-21.txt
+ *
  * $Id$
  */
 
 
+class VCard {
+
+function create_vcard ($value_array) {
+
+return $vcard;
+}
+
+function parse_vcard ($vcard) {
+
+return $array;
+}
+
+}
+
 ?>