瀏覽代碼

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

centaurix 23 年之前
父節點
當前提交
1090e5e21d
共有 1 個文件被更改,包括 16 次插入0 次删除
  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.
  *
+ * http://www.imc.org/pdi/vcard-21.txt
+ *
  * $Id$
  */
 
 
+class VCard {
+
+function create_vcard ($value_array) {
+
+return $vcard;
+}
+
+function parse_vcard ($vcard) {
+
+return $array;
+}
+
+}
+
 ?>