PATH:
home
/
letacommog
/
crmleta
/
modules
/
Mobile
/
third-party
/
qCal
/
qCal
/
Property
<?php /** * Time Transparency Property * @package qCal * @copyright Luke Visinoni (luke.visinoni@gmail.com) * @author Luke Visinoni (luke.visinoni@gmail.com) * @license GNU Lesser General Public License * @todo Should this default to OPAQUE? * @todo There needs to be a library-level method of finding "visible" free-busy time * * RFC 2445 Definition * * Property Name: TRANSP * * Purpose: This property defines whether an event is transparent or not * to busy time searches. * * Value Type: TEXT * * Property Parameters: Non-standard property parameters can be * specified on this property. * * Conformance: This property can be specified once in a "VEVENT" * calendar component. * * Description: Time Transparency is the characteristic of an event that * determines whether it appears to consume time on a calendar. Events * that consume actual time for the individual or resource associated * with the calendar SHOULD be recorded as OPAQUE, allowing them to be * detected by free-busy time searches. Other events, which do not take * up the individual's (or resource's) time SHOULD be recorded as * TRANSPARENT, making them invisible to free-busy time searches. * * Format Definition: The property is specified by the following * notation: * * transp = "TRANSP" tranparam ":" transvalue CRLF * * tranparam = *(";" xparam) * * transvalue = "OPAQUE" ;Blocks or opaque on busy time searches. * / "TRANSPARENT" ;Transparent on busy time searches. * ;Default value is OPAQUE * * Example: The following is an example of this property for an event * that is transparent or does not block on free/busy time searches: * * TRANSP:TRANSPARENT * * The following is an example of this property for an event that is * opaque or blocks on free/busy time searches: * * TRANSP:OPAQUE */ class qCal_Property_Transp extends qCal_Property { protected $type = 'TEXT'; protected $allowedComponents = array('VEVENT'); }
[+]
..
[-] 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]