X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=class%2Fhelper%2FVCard.class.php;h=d4bff4403f1744ef7aff414b0033ad479b52dc47;hp=5be02b3f2c30a26616cf49b8293daa0fd5e9094e;hb=4b4abf93a9624311afef0c385023724ee46a2b60;hpb=6c84ba1ec45ab854c37b6f65c5b4d84ab1c7aad4 diff --git a/class/helper/VCard.class.php b/class/helper/VCard.class.php index 5be02b3f..d4bff440 100644 --- a/class/helper/VCard.class.php +++ b/class/helper/VCard.class.php @@ -3,33 +3,41 @@ /** * vCard.class * - * 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 * + * @copyright © 2003-2005 The SquirrelMail Project Team + * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @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; + /** + * 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; + } } - -function parse_vcard ($vcard) { - -return $array; -} - -} - ?> \ No newline at end of file