X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=class%2Fhelper%2FVCard.class.php;h=898fe0b47d42cc9c2220604d2f5d4821132c6fa0;hp=5be02b3f2c30a26616cf49b8293daa0fd5e9094e;hb=3b1721833009ad0674d72096e92162f36b929da6;hpb=763469ef88b05d2f6c84d24ebdd559ff481f756f diff --git a/class/helper/VCard.class.php b/class/helper/VCard.class.php index 5be02b3f..898fe0b4 100644 --- a/class/helper/VCard.class.php +++ b/class/helper/VCard.class.php @@ -12,24 +12,33 @@ * * @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