* added vcard url, skeleton functions. slow but not to slow ;) more is to come !
authorcentaurix <centaurix@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 14 Oct 2002 21:21:24 +0000 (21:21 +0000)
committercentaurix <centaurix@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 14 Oct 2002 21:21:24 +0000 (21:21 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@3847 7612ce4b-ef26-0410-bec9-ea0150e637f0

class/helper/VCard.class.php

index cb79f8133f11a4d53ea2f0d8741d5f1cc100507d..ee2b0518ceb82413e511eba8bfa5fcb658743caf 100644 (file)
@@ -8,8 +8,24 @@
  *
  * 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;
+}
+
+}
+
 ?>