import v1.1.0_beta1 | 2009-08-21
This commit is contained in:
@ -45,12 +45,17 @@ require_once 'Zend/Gdata/Calendar/Extension/Timezone.php';
|
||||
*/
|
||||
require_once 'Zend/Gdata/Calendar/Extension/Link.php';
|
||||
|
||||
/**
|
||||
* @see Zend_Gdata_Calendar_Extension_QuickAdd
|
||||
*/
|
||||
require_once 'Zend/Gdata/Calendar/Extension/QuickAdd.php';
|
||||
|
||||
/**
|
||||
* Data model class for a Google Calendar Event Entry
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Calendar
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
@ -64,9 +69,7 @@ class Zend_Gdata_Calendar_EventEntry extends Zend_Gdata_Kind_EventEntry
|
||||
|
||||
public function __construct($element = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Calendar::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Calendar::$namespaces);
|
||||
parent::__construct($element);
|
||||
}
|
||||
|
||||
|
@ -35,6 +35,7 @@ require_once 'Zend/Gdata/Calendar/Extension/Timezone.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Calendar
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
@ -59,11 +60,8 @@ class Zend_Gdata_Calendar_EventFeed extends Zend_Gdata_Feed
|
||||
|
||||
public function __construct($element = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Calendar::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Calendar::$namespaces);
|
||||
parent::__construct($element);
|
||||
|
||||
}
|
||||
|
||||
public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
|
||||
|
@ -37,6 +37,7 @@ require_once('Zend/Gdata/Query.php');
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Calendar
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
@ -341,7 +342,7 @@ class Zend_Gdata_Calendar_EventQuery extends Zend_Gdata_Query
|
||||
*/
|
||||
public function setSingleEvents($value)
|
||||
{
|
||||
if (!is_null($value)) {
|
||||
if ($value !== null) {
|
||||
if (is_bool($value)) {
|
||||
$this->_params['singleevents'] = ($value?'true':'false');
|
||||
} elseif ($value == 'true' | $value == 'false') {
|
||||
@ -390,7 +391,7 @@ class Zend_Gdata_Calendar_EventQuery extends Zend_Gdata_Query
|
||||
*/
|
||||
public function setFutureEvents($value)
|
||||
{
|
||||
if (!is_null($value)) {
|
||||
if ($value !== null) {
|
||||
if (is_bool($value)) {
|
||||
$this->_params['futureevents'] = ($value?'true':'false');
|
||||
} elseif ($value == 'true' | $value == 'false') {
|
||||
|
@ -15,6 +15,7 @@
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Calendar
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
@ -34,6 +35,7 @@ require_once 'Zend/Gdata/Calendar.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Calendar
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
@ -50,9 +52,7 @@ class Zend_Gdata_Calendar_Extension_AccessLevel extends Zend_Gdata_Extension
|
||||
*/
|
||||
public function __construct($value = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Calendar::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Calendar::$namespaces);
|
||||
parent::__construct();
|
||||
$this->_value = $value;
|
||||
}
|
||||
|
@ -15,6 +15,7 @@
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Calendar
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
@ -30,6 +31,7 @@ require_once 'Zend/Gdata/Extension.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Calendar
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
@ -46,9 +48,7 @@ class Zend_Gdata_Calendar_Extension_Color extends Zend_Gdata_Extension
|
||||
*/
|
||||
public function __construct($value = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Calendar::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Calendar::$namespaces);
|
||||
parent::__construct();
|
||||
$this->_value = $value;
|
||||
}
|
||||
|
@ -15,6 +15,7 @@
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Calendar
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
@ -29,6 +30,7 @@ require_once 'Zend/Gdata/Extension.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Calendar
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
@ -45,9 +47,7 @@ class Zend_Gdata_Calendar_Extension_Hidden extends Zend_Gdata_Extension
|
||||
*/
|
||||
public function __construct($value = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Calendar::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Calendar::$namespaces);
|
||||
parent::__construct();
|
||||
$this->_value = $value;
|
||||
}
|
||||
|
@ -14,6 +14,7 @@
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Calendar
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
* @version $Id: Entry.php 3941 2007-03-14 21:36:13Z darby $
|
||||
@ -35,6 +36,7 @@ require_once 'Zend/Gdata/Calendar/Extension/WebContent.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Calendar
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
@ -51,9 +53,7 @@ class Zend_Gdata_Calendar_Extension_Link extends Zend_Gdata_App_Extension_Link
|
||||
public function __construct($href = null, $rel = null, $type = null,
|
||||
$hrefLang = null, $title = null, $length = null, $webContent = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Calendar::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Calendar::$namespaces);
|
||||
parent::__construct($href, $rel, $type, $hrefLang, $title, $length);
|
||||
$this->_webContent = $webContent;
|
||||
}
|
||||
|
@ -15,6 +15,7 @@
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Calendar
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
@ -29,6 +30,7 @@ require_once 'Zend/Gdata/Extension.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Calendar
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
@ -45,9 +47,7 @@ class Zend_Gdata_Calendar_Extension_QuickAdd extends Zend_Gdata_Extension
|
||||
*/
|
||||
public function __construct($value = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Calendar::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Calendar::$namespaces);
|
||||
parent::__construct();
|
||||
$this->_value = $value;
|
||||
}
|
||||
|
@ -15,6 +15,7 @@
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Calendar
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
@ -29,6 +30,7 @@ require_once 'Zend/Gdata/Extension.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Calendar
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
@ -45,9 +47,7 @@ class Zend_Gdata_Calendar_Extension_Selected extends Zend_Gdata_Extension
|
||||
*/
|
||||
public function __construct($value = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Calendar::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Calendar::$namespaces);
|
||||
parent::__construct();
|
||||
$this->_value = $value;
|
||||
}
|
||||
|
@ -15,6 +15,7 @@
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Calendar
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
@ -29,6 +30,7 @@ require_once 'Zend/Gdata/Extension.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Calendar
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
@ -44,9 +46,7 @@ class Zend_Gdata_Calendar_Extension_SendEventNotifications extends Zend_Gdata_Ex
|
||||
*/
|
||||
public function __construct($value = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Calendar::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Calendar::$namespaces);
|
||||
parent::__construct();
|
||||
$this->_value = $value;
|
||||
}
|
||||
|
@ -15,6 +15,7 @@
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Calendar
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
@ -29,6 +30,7 @@ require_once 'Zend/Gdata/Extension.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Calendar
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
@ -45,9 +47,7 @@ class Zend_Gdata_Calendar_Extension_Timezone extends Zend_Gdata_Extension
|
||||
*/
|
||||
public function __construct($value = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Calendar::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Calendar::$namespaces);
|
||||
parent::__construct();
|
||||
$this->_value = $value;
|
||||
}
|
||||
|
@ -15,6 +15,7 @@
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Calendar
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
@ -29,6 +30,7 @@ require_once 'Zend/Gdata/Extension.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Calendar
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
@ -49,9 +51,7 @@ class Zend_Gdata_Calendar_Extension_WebContent extends Zend_Gdata_App_Extension
|
||||
*/
|
||||
public function __construct($url = null, $height = null, $width = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Calendar::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Calendar::$namespaces);
|
||||
parent::__construct();
|
||||
$this->_url = $url;
|
||||
$this->_height = $height;
|
||||
|
@ -67,6 +67,7 @@ require_once 'Zend/Gdata/Extension/Where.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Calendar
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
@ -82,9 +83,7 @@ class Zend_Gdata_Calendar_ListEntry extends Zend_Gdata_Entry
|
||||
|
||||
public function __construct($element = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Calendar::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Calendar::$namespaces);
|
||||
parent::__construct($element);
|
||||
}
|
||||
|
||||
|
@ -35,6 +35,7 @@ require_once 'Zend/Gdata/Calendar/Extension/Timezone.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Calendar
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
@ -58,9 +59,7 @@ class Zend_Gdata_Calendar_ListFeed extends Zend_Gdata_Feed
|
||||
|
||||
public function __construct($element = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Calendar::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Calendar::$namespaces);
|
||||
parent::__construct($element);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user