HEX
Server: Apache/2.4.46 (Win64) OpenSSL/1.1.1j PHP/8.4.25
System: Windows NT DESKTOP-4TAV2RJ 10.0 build 19045 (Windows 10) AMD64
User: fred (0)
PHP: 8.4.25
Disabled: NONE
Upload Files
File: C:/xampp/htdocs/mail/class/helper/VCard.class.php
<?php

/**
 * vCard.class
 *
 * This (will) contain functions needed to vCards.
 *
 * http://www.imc.org/pdi/vcard-21.txt
 *
 * @copyright &copy; 2003-2009 The SquirrelMail Project Team
 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
 * @version $Id: VCard.class.php 13549 2009-04-15 22:00:49Z jervfors $
 * @package squirrelmail
 * @since 1.3.2
 */

/**
 * Unimplemented class that should handle vcards
 * Don't use it unless it is marked as implemented.
 * @package squirrelmail
 */
class 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;
    }
}