VCard.class.php 485 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /**
  3. * vCard.class
  4. *
  5. * Copyright (c) 2003-2004 The SquirrelMail Project Team
  6. * Licensed under the GNU GPL. For full terms see the file COPYING.
  7. *
  8. * This (will) contain functions needed to vCards.
  9. *
  10. * http://www.imc.org/pdi/vcard-21.txt
  11. *
  12. * @version $Id$
  13. * @package squirrelmail
  14. */
  15. /**
  16. * Undocumented class
  17. * @package squirrelmail
  18. */
  19. class VCard {
  20. function create_vcard ($value_array) {
  21. return $vcard;
  22. }
  23. function parse_vcard ($vcard) {
  24. return $array;
  25. }
  26. }
  27. ?>