web/lib/Zend/Gdata/Calendar/EventQuery.php
changeset 807 877f952ae2bd
parent 207 621fa6caec0c
child 1230 68c69c656a2c
equal deleted inserted replaced
805:5e7a0fedabdf 807:877f952ae2bd
    14  * to license@zend.com so we can send you a copy immediately.
    14  * to license@zend.com so we can send you a copy immediately.
    15  *
    15  *
    16  * @category   Zend
    16  * @category   Zend
    17  * @package    Zend_Gdata
    17  * @package    Zend_Gdata
    18  * @subpackage Calendar
    18  * @subpackage Calendar
    19  * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
    19  * @copyright  Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
    20  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    20  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    21  * @version    $Id: EventQuery.php 20096 2010-01-06 02:05:09Z bkarwin $
    21  * @version    $Id: EventQuery.php 24593 2012-01-05 20:35:02Z matthew $
    22  */
    22  */
    23 
    23 
    24 /**
    24 /**
    25  * Zend_Gdata_App_util
    25  * Zend_Gdata_App_util
    26  */
    26  */
    37  * @link http://code.google.com/apis/gdata/calendar/
    37  * @link http://code.google.com/apis/gdata/calendar/
    38  *
    38  *
    39  * @category   Zend
    39  * @category   Zend
    40  * @package    Zend_Gdata
    40  * @package    Zend_Gdata
    41  * @subpackage Calendar
    41  * @subpackage Calendar
    42  * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
    42  * @copyright  Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
    43  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    43  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    44  */
    44  */
    45 class Zend_Gdata_Calendar_EventQuery extends Zend_Gdata_Query
    45 class Zend_Gdata_Calendar_EventQuery extends Zend_Gdata_Query
    46 {
    46 {
    47 
    47 
    48     const CALENDAR_FEED_URI = 'http://www.google.com/calendar/feeds';
    48     const CALENDAR_FEED_URI = 'https://www.google.com/calendar/feeds';
    49 
    49 
    50     /**
    50     /**
    51      * The default URI used for feeds.
    51      * The default URI used for feeds.
    52      */
    52      */
    53     protected $_defaultFeedUri = self::CALENDAR_FEED_URI;
    53     protected $_defaultFeedUri = self::CALENDAR_FEED_URI;
    89     protected $_event = null;
    89     protected $_event = null;
    90 
    90 
    91     /**
    91     /**
    92      * Create Gdata_Calendar_EventQuery object.  If a URL is provided,
    92      * Create Gdata_Calendar_EventQuery object.  If a URL is provided,
    93      * it becomes the base URL, and additional URL components may be
    93      * it becomes the base URL, and additional URL components may be
    94      * appended.  For instance, if $url is 'http://www.google.com/calendar',
    94      * appended.  For instance, if $url is 'https://www.google.com/calendar',
    95      * the default URL constructed will be
    95      * the default URL constructed will be
    96      * 'http://www.google.com/calendar/default/public/full'.
    96      * 'https://www.google.com/calendar/default/public/full'.
    97      *
    97      *
    98      * If the URL already contains a calendar ID, projection, visibility,
    98      * If the URL already contains a calendar ID, projection, visibility,
    99      * event ID, or comment ID, you will need to set these fields to null
    99      * event ID, or comment ID, you will need to set these fields to null
   100      * to prevent them from being inserted. See this class's properties for
   100      * to prevent them from being inserted. See this class's properties for
   101      * more information.
   101      * more information.