adding index files in order to prevent directory listing.
[squirrelmail.git] / class / helper / VCard.class.php
index 96f494e9d1decd6eb56e1b747c2095c55907a89e..898fe0b47d42cc9c2220604d2f5d4821132c6fa0 100644 (file)
@@ -3,33 +3,42 @@
 /**
  * vCard.class
  *
- * Copyright (c) 2003-2004 The SquirrelMail Project Team
+ * Copyright (c) 2003-2005 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$
+ * @version $Id$
  * @package squirrelmail
+ * @since 1.3.2
  */
 
 /**
- * Undocumented class
+ * Unimplemented class that should handle vcards
+ * Don't use it unless it is marked as implemented.
  * @package squirrelmail
  */
 class VCard {
-
-function create_vcard ($value_array) {
-
-return $vcard;
-}
-
-function parse_vcard ($vcard) {
-
-return $array;
-}
-
+    /**
+     * Create vcard from information stored in array
+     * @todo implement vcard creation from array
+     * @param array $value_array
+     * @return string
+     */
+    function create_vcard ($value_array) {
+        return $vcard;
+    }
+
+    /**
+     * Read vcard and convert it to array
+     * @todo implement vcard parsing
+     * @param string $vcard
+     * @return array
+     */
+    function parse_vcard ($vcard) {
+        return $array;
+    }
 }
-
-?>
+?>
\ No newline at end of file