Browse Source

* added vcard url, skeleton functions. slow but not to slow ;) more is to come !

centaurix 23 years ago
parent
commit
1090e5e21d
1 changed files with 16 additions and 0 deletions
  1. 16 0
      class/helper/VCard.class.php

+ 16 - 0
class/helper/VCard.class.php

@@ -8,8 +8,24 @@
  *
  *
  * This (will) contain functions needed to vCards.
  * This (will) contain functions needed to vCards.
  *
  *
+ * http://www.imc.org/pdi/vcard-21.txt
+ *
  * $Id$
  * $Id$
  */
  */
 
 
 
 
+class VCard {
+
+function create_vcard ($value_array) {
+
+return $vcard;
+}
+
+function parse_vcard ($vcard) {
+
+return $array;
+}
+
+}
+
 ?>
 ?>