/usr/share/squirrelmail/class/helper/VCard.class.php is in squirrelmail 2:1.4.23~svn20120406-2ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | <?php
/**
* vCard.class
*
* This (will) contain functions needed to vCards.
*
* http://www.imc.org/pdi/vcard-21.txt
*
* @copyright 2003-2012 The SquirrelMail Project Team
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @version $Id: VCard.class.php 14248 2012-01-02 00:18:17Z pdontthink $
* @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;
}
}
|