Zend Framework
1.12
|
Public Attributes | |
const | CALENDAR_FEED_URI = 'https://www.google.com/calendar/feeds' |
Protected Attributes | |
$_defaultFeedUri = self::CALENDAR_FEED_URI | |
The default URI used for feeds. | |
$_comments = null | |
The comment ID to retrieve. | |
$_user = 'default' | |
The calendar address to be requested by queries. | |
$_visibility = 'public' | |
$_projection = 'full' | |
Projection to be requested by queries. | |
$_event = null | |
The event ID to retrieve. | |
![]() | |
$_params = array() | |
$_defaultFeedUri = null | |
$_url = null | |
$_category = null | |
__construct | ( | $url = null | ) |
Create Gdata_Calendar_EventQuery object.
If a URL is provided, it becomes the base URL, and additional URL components may be appended. For instance, if $url is 'https://www.google.com/calendar', the default URL constructed will be 'https://www.google.com/calendar/default/public/full'.
If the URL already contains a calendar ID, projection, visibility, event ID, or comment ID, you will need to set these fields to null to prevent them from being inserted. See this class's properties for more information.
string | $url | The URL to use as the base path for requests |
getComments | ( | ) |
getEvent | ( | ) |
getFutureEvents | ( | ) |
getOrderBy | ( | ) |
getProjection | ( | ) |
getQueryUrl | ( | ) |
getRecurrenceExpansionEnd | ( | ) |
getRecurrenceExpansionStart | ( | ) |
getSingleEvents | ( | ) |
string | $value | Also accepts bools. |
getSortOrder | ( | ) |
getStartMax | ( | ) |
getStartMin | ( | ) |
getUser | ( | ) |
getVisibility | ( | ) |
setComments | ( | $value | ) |
string | $value |
setEvent | ( | $value | ) |
string | $value |
setFutureEvents | ( | $value | ) |
string | $value | Also accepts bools. If using a string, must be either "true" or "false" or an exception will be thrown on retrieval. |
setOrderBy | ( | $value | ) |
string | $value |
setProjection | ( | $value | ) |
string | $value |
setRecurrenceExpansionEnd | ( | $value | ) |
setRecurrenceExpansionStart | ( | $value | ) |
setSingleEvents | ( | $value | ) |
string | $value | Also accepts bools. If using a string, must be either "true" or "false". |
setSortOrder | ( | $value | ) |
setStartMax | ( | $value | ) |
int | $value |
setStartMin | ( | $value | ) |
int | $value |
setUser | ( | $value | ) |
string | $value |
setVisibility | ( | $value | ) |
bool | $value |
|
protected |
The comment ID to retrieve.
If null, no specific comment will be retrieved unless already included in the query URI. The event ID ($_event) must be set, otherwise this property is ignored.
|
protected |
The default URI used for feeds.
|
protected |
The event ID to retrieve.
If null, no specific event will be retrieved unless already included in the query URI.
|
protected |
Projection to be requested by queries.
Defaults to "full". A null value should be used when the calendar address has already been set as part of the query URI.
|
protected |
The calendar address to be requested by queries.
This may be an email address if requesting the primary calendar for a user. Defaults to "default" (the currently authenticated user). A null value should be used when the calendar address has already been set as part of the query URI.
|
protected |
const CALENDAR_FEED_URI = 'https://www.google.com/calendar/feeds' |