PATH:
home
/
letacommog
/
crmleta
/
modules
/
Mobile
/
third-party
/
qCal
/
qCal
/
Value
<?php /** * Calendar User Address Value * @package qCal * @copyright Luke Visinoni (luke.visinoni@gmail.com) * @author Luke Visinoni (luke.visinoni@gmail.com) * @license GNU Lesser General Public License * * Value Name: CAL-ADDRESS * * Purpose: This value type is used to identify properties that contain * a calendar user address. * * Formal Definition: The value type is as defined by the following * notation: * * cal-address = uri * * Description: The value is a URI as defined by [RFC 1738] or any other * IANA registered form for a URI. When used to address an Internet * email transport address for a calendar user, the value MUST be a * MAILTO URI, as defined by [RFC 1738]. No additional content value * encoding (i.e., BACKSLASH character encoding) is defined for this * value type. * * Example: * * ATTENDEE:MAILTO:jane_doe@host.com */ class qCal_Value_CalAddress extends qCal_Value_Uri { /** * @todo: implement this */ protected function doCast($value) { return $value; } }
[+]
..
[-] Period.php
[edit]
[-] Time.php
[edit]
[-] Date.php
[edit]
[-] CalAddress.php
[edit]
[-] Binary.php
[edit]
[-] Integer.php
[edit]
[-] Recur.php
[edit]
[-] Duration.php
[edit]
[-] Text.php
[edit]
[-] Boolean.php
[edit]
[-] Float.php
[edit]
[-] DateTime.php
[edit]
[-] Uri.php
[edit]
[-] UtcOffset.php
[edit]