PATH:
home
/
letacommog
/
crmleta
/
modules
/
Mobile
/
third-party
/
qCal
/
qCal
/
Property
<?php /** * Time Zone Identifier Property * @package qCal * @copyright Luke Visinoni (luke.visinoni@gmail.com) * @author Luke Visinoni (luke.visinoni@gmail.com) * @license GNU Lesser General Public License * @todo Make sure that this must be specified in vtimezone * * RFC 2445 Definition * * Property Name: TZID * * Purpose: This property specifies the text value that uniquely * identifies the "VTIMEZONE" calendar component. * * Value Type: TEXT * * Property Parameters: Non-standard property parameters can be * specified on this property. * * Conformance: This property MUST be specified in a "VTIMEZONE" * calendar component. * * Description: This is the label by which a time zone calendar * component is referenced by any iCalendar properties whose data type * is either DATE-TIME or TIME and not intended to specify a UTC or a * "floating" time. The presence of the SOLIDUS character (US-ASCII * decimal 47) as a prefix, indicates that this TZID represents an * unique ID in a globally defined time zone registry (when such * registry is defined). * * Note: This document does not define a naming convention for time * zone identifiers. Implementers may want to use the naming * conventions defined in existing time zone specifications such as * the public-domain Olson database [TZ]. The specification of * globally unique time zone identifiers is not addressed by this * document and is left for future study. * * Format Definition: This property is defined by the following * notation: * * tzid = "TZID" tzidpropparam ":" [tzidprefix] text CRLF * * tzidpropparam = *(";" xparam) * * ;tzidprefix = "/" * ; Defined previously. Just listed here for reader convenience. * * Example: The following are examples of non-globally unique time zone * identifiers: * * TZID:US-Eastern * * TZID:California-Los_Angeles * * The following is an example of a fictitious globally unique time zone * identifier: * * TZID:/US-New_York-New_York */ class qCal_Property_Tzid extends qCal_Property { protected $type = 'TEXT'; protected $allowedComponents = array('VTIMEZONE'); }
[+]
..
[-] LastModified.php
[edit]
[-] Trigger.php
[edit]
[-] Dtstart.php
[edit]
[-] Priority.php
[edit]
[-] RequestStatus.php
[edit]
[-] NonStandard.php
[edit]
[-] Resources.php
[edit]
[-] Duration.php
[edit]
[-] Description.php
[edit]
[-] Url.php
[edit]
[-] Due.php
[edit]
[-] Dtstamp.php
[edit]
[-] Method.php
[edit]
[-] Summary.php
[edit]
[-] Exrule.php
[edit]
[-] Repeat.php
[edit]
[-] Location.php
[edit]
[-] Class.php
[edit]
[-] Prodid.php
[edit]
[-] Transp.php
[edit]
[-] Attendee.php
[edit]
[-] Rrule.php
[edit]
[-] Comment.php
[edit]
[-] Tzurl.php
[edit]
[-] Freebusy.php
[edit]
[-] PercentComplete.php
[edit]
[-] Tzname.php
[edit]
[-] Version.php
[edit]
[-] Categories.php
[edit]
[-] Attach.php
[edit]
[-] Tzid.php
[edit]
[-] Uid.php
[edit]
[-] RelatedTo.php
[edit]
[-] Sequence.php
[edit]
[-] Created.php
[edit]
[-] Tzoffsetto.php
[edit]
[-] RecurrenceId.php
[edit]
[-] Organizer.php
[edit]
[-] Dtend.php
[edit]
[-] Calscale.php
[edit]
[-] Rdate.php
[edit]
[-] Action.php
[edit]
[-] MultiValue.php
[edit]
[-] Exdate.php
[edit]
[-] Contact.php
[edit]
[-] Completed.php
[edit]
[-] Status.php
[edit]
[-] Tzoffsetfrom.php
[edit]
[-] Geo.php
[edit]