import v1.1.0_beta1 | 2009-08-21
This commit is contained in:
@ -32,11 +32,12 @@ require_once 'Zend/Gdata/Photos.php';
|
||||
|
||||
/**
|
||||
* Represents the gphoto:access element used by the API.
|
||||
* This determines the visibility for an album, and can be either
|
||||
* This determines the visibility for an album, and can be either
|
||||
* the strings 'private' or 'public'.
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Photos
|
||||
* @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,17 +46,15 @@ class Zend_Gdata_Photos_Extension_Access extends Zend_Gdata_Extension
|
||||
|
||||
protected $_rootNamespace = 'gphoto';
|
||||
protected $_rootElement = 'access';
|
||||
|
||||
|
||||
/**
|
||||
* Constructs a new Zend_Gdata_Photos_Extension_Access object.
|
||||
*
|
||||
*
|
||||
* @param string $text (optional) The value to represent.
|
||||
*/
|
||||
public function __construct($text = null)
|
||||
public function __construct($text = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Photos::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
|
||||
parent::__construct();
|
||||
$this->setText($text);
|
||||
}
|
||||
|
@ -31,12 +31,13 @@ require_once 'Zend/Gdata/Extension.php';
|
||||
require_once 'Zend/Gdata/Photos.php';
|
||||
|
||||
/**
|
||||
* Represents the gphoto:albumid element used by the API. This
|
||||
* class represents the ID of an album and is usually contained
|
||||
* Represents the gphoto:albumid element used by the API. This
|
||||
* class represents the ID of an album and is usually contained
|
||||
* within an instance of Zend_Gdata_Photos_AlbumEntry or CommentEntry.
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Photos
|
||||
* @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,17 +46,15 @@ class Zend_Gdata_Photos_Extension_AlbumId extends Zend_Gdata_Extension
|
||||
|
||||
protected $_rootNamespace = 'gphoto';
|
||||
protected $_rootElement = 'albumid';
|
||||
|
||||
|
||||
/**
|
||||
* Constructs a new Zend_Gdata_Photos_Extension_AlbumId object.
|
||||
*
|
||||
*
|
||||
* @param string $text (optional) The value to use for the Album ID.
|
||||
*/
|
||||
public function __construct($text = null)
|
||||
public function __construct($text = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Photos::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
|
||||
parent::__construct();
|
||||
$this->setText($text);
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ require_once 'Zend/Gdata/Photos.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Photos
|
||||
* @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,17 +45,15 @@ class Zend_Gdata_Photos_Extension_BytesUsed extends Zend_Gdata_Extension
|
||||
|
||||
protected $_rootNamespace = 'gphoto';
|
||||
protected $_rootElement = 'bytesUsed';
|
||||
|
||||
|
||||
/**
|
||||
* Constructs a new Zend_Gdata_Photos_Extension_BytesUsed object.
|
||||
*
|
||||
*
|
||||
* @param string $text (optional) The value to represent.
|
||||
*/
|
||||
public function __construct($text = null)
|
||||
public function __construct($text = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Photos::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
|
||||
parent::__construct();
|
||||
$this->setText($text);
|
||||
}
|
||||
|
@ -37,6 +37,7 @@ require_once 'Zend/Gdata/Photos.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Photos
|
||||
* @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,17 +46,15 @@ class Zend_Gdata_Photos_Extension_Checksum extends Zend_Gdata_Extension
|
||||
|
||||
protected $_rootNamespace = 'gphoto';
|
||||
protected $_rootElement = 'checksum';
|
||||
|
||||
|
||||
/**
|
||||
* Constructs a new Zend_Gdata_Photos_Extension_Checksum object.
|
||||
*
|
||||
*
|
||||
* @param string $text (optional) The value to represent.
|
||||
*/
|
||||
public function __construct($text = null)
|
||||
public function __construct($text = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Photos::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
|
||||
parent::__construct();
|
||||
$this->setText($text);
|
||||
}
|
||||
|
@ -37,6 +37,7 @@ require_once 'Zend/Gdata/Photos.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Photos
|
||||
* @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,17 +46,15 @@ class Zend_Gdata_Photos_Extension_Client extends Zend_Gdata_Extension
|
||||
|
||||
protected $_rootNamespace = 'gphoto';
|
||||
protected $_rootElement = 'client';
|
||||
|
||||
|
||||
/**
|
||||
* Constructs a new Zend_Gdata_Photos_Extension_Client object.
|
||||
*
|
||||
*
|
||||
* @param string $text (optional) The value to represent.
|
||||
*/
|
||||
public function __construct($text = null)
|
||||
public function __construct($text = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Photos::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
|
||||
parent::__construct();
|
||||
$this->setText($text);
|
||||
}
|
||||
|
@ -31,12 +31,13 @@ require_once 'Zend/Gdata/Extension.php';
|
||||
require_once 'Zend/Gdata/Photos.php';
|
||||
|
||||
/**
|
||||
* Represents the gphoto:commentCount element used by the API. This
|
||||
* class represents the number of comments attached to an entry and is usually contained
|
||||
* Represents the gphoto:commentCount element used by the API. This
|
||||
* class represents the number of comments attached to an entry and is usually contained
|
||||
* within an instance of Zend_Gdata_Photos_PhotoEntry or AlbumEntry.
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Photos
|
||||
* @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,17 +46,15 @@ class Zend_Gdata_Photos_Extension_CommentCount extends Zend_Gdata_Extension
|
||||
|
||||
protected $_rootNamespace = 'gphoto';
|
||||
protected $_rootElement = 'commentCount';
|
||||
|
||||
|
||||
/**
|
||||
* Constructs a new Zend_Gdata_Photos_Extension_CommentCount object.
|
||||
*
|
||||
*
|
||||
* @param string $text (optional) The value to use for the count.
|
||||
*/
|
||||
public function __construct($text = null)
|
||||
public function __construct($text = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Photos::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
|
||||
parent::__construct();
|
||||
$this->setText($text);
|
||||
}
|
||||
|
@ -37,6 +37,7 @@ require_once 'Zend/Gdata/Photos.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Photos
|
||||
* @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,18 +46,16 @@ class Zend_Gdata_Photos_Extension_CommentingEnabled extends Zend_Gdata_Extension
|
||||
|
||||
protected $_rootNamespace = 'gphoto';
|
||||
protected $_rootElement = 'commentingEnabled';
|
||||
|
||||
|
||||
/**
|
||||
* Constructs a new Zend_Gdata_Photos_Extension_CommentingEnabled object.
|
||||
*
|
||||
*
|
||||
* @param string $text (optional) Whether commenting should be enabled
|
||||
* or not.
|
||||
*/
|
||||
public function __construct($text = null)
|
||||
public function __construct($text = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Photos::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
|
||||
parent::__construct();
|
||||
$this->setText($text);
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ require_once 'Zend/Gdata/Photos.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Photos
|
||||
* @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,17 +45,15 @@ class Zend_Gdata_Photos_Extension_Height extends Zend_Gdata_Extension
|
||||
|
||||
protected $_rootNamespace = 'gphoto';
|
||||
protected $_rootElement = 'height';
|
||||
|
||||
|
||||
/**
|
||||
* Constructs a new Zend_Gdata_Photos_Extension_Height object.
|
||||
*
|
||||
*
|
||||
* @param string $text (optional) The value to represent.
|
||||
*/
|
||||
public function __construct($text = null)
|
||||
public function __construct($text = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Photos::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
|
||||
parent::__construct();
|
||||
$this->setText($text);
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ require_once 'Zend/Gdata/Photos.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Photos
|
||||
* @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,17 +45,15 @@ class Zend_Gdata_Photos_Extension_Id extends Zend_Gdata_Extension
|
||||
|
||||
protected $_rootNamespace = 'gphoto';
|
||||
protected $_rootElement = 'id';
|
||||
|
||||
|
||||
/**
|
||||
* Constructs a new Zend_Gdata_Photos_Extension_Id object.
|
||||
*
|
||||
*
|
||||
* @param string $text (optional) The ID being represented.
|
||||
*/
|
||||
public function __construct($text = null)
|
||||
public function __construct($text = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Photos::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
|
||||
parent::__construct();
|
||||
$this->setText($text);
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ require_once 'Zend/Gdata/Photos.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Photos
|
||||
* @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,17 +45,15 @@ class Zend_Gdata_Photos_Extension_Location extends Zend_Gdata_Extension
|
||||
|
||||
protected $_rootNamespace = 'gphoto';
|
||||
protected $_rootElement = 'location';
|
||||
|
||||
|
||||
/**
|
||||
* Constructs a new Zend_Gdata_Photos_Extension_Location object.
|
||||
*
|
||||
*
|
||||
* @param string $text (optional) The value to represent.
|
||||
*/
|
||||
public function __construct($text = null)
|
||||
public function __construct($text = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Photos::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
|
||||
parent::__construct();
|
||||
$this->setText($text);
|
||||
}
|
||||
|
@ -37,6 +37,7 @@ require_once 'Zend/Gdata/Photos.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Photos
|
||||
* @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,17 +46,15 @@ class Zend_Gdata_Photos_Extension_MaxPhotosPerAlbum extends Zend_Gdata_Extension
|
||||
|
||||
protected $_rootNamespace = 'gphoto';
|
||||
protected $_rootElement = 'maxPhotosPerAlbum';
|
||||
|
||||
|
||||
/**
|
||||
* Constructs a new Zend_Gdata_Photos_Extension_MaxPhotosPerAlbum object.
|
||||
*
|
||||
*
|
||||
* @param string $text (optional) The value being represented.
|
||||
*/
|
||||
public function __construct($text = null)
|
||||
public function __construct($text = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Photos::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
|
||||
parent::__construct();
|
||||
$this->setText($text);
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ require_once 'Zend/Gdata/Photos.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Photos
|
||||
* @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,19 +45,17 @@ class Zend_Gdata_Photos_Extension_Name extends Zend_Gdata_Extension
|
||||
|
||||
protected $_rootNamespace = 'gphoto';
|
||||
protected $_rootElement = 'name';
|
||||
|
||||
|
||||
/**
|
||||
* Constructs a new Zend_Gdata_Photos_Extension_Name object.
|
||||
*
|
||||
*
|
||||
* @param string $text (optional) The value to represent.
|
||||
*/
|
||||
public function __construct($text = null)
|
||||
public function __construct($text = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Photos::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
|
||||
parent::__construct();
|
||||
$this->setText($text);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ require_once 'Zend/Gdata/Photos.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Photos
|
||||
* @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,17 +45,15 @@ class Zend_Gdata_Photos_Extension_Nickname extends Zend_Gdata_Extension
|
||||
|
||||
protected $_rootNamespace = 'gphoto';
|
||||
protected $_rootElement = 'nickname';
|
||||
|
||||
|
||||
/**
|
||||
* Constructs a new Zend_Gdata_Photos_Extension_Nickname object.
|
||||
*
|
||||
*
|
||||
* @param string $text (optional) The value being represented.
|
||||
*/
|
||||
public function __construct($text = null)
|
||||
public function __construct($text = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Photos::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
|
||||
parent::__construct();
|
||||
$this->setText($text);
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ require_once 'Zend/Gdata/Photos.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Photos
|
||||
* @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,17 +45,15 @@ class Zend_Gdata_Photos_Extension_NumPhotos extends Zend_Gdata_Extension
|
||||
|
||||
protected $_rootNamespace = 'gphoto';
|
||||
protected $_rootElement = 'numphotos';
|
||||
|
||||
|
||||
/**
|
||||
* Constructs a new Zend_Gdata_Photos_Extension_NumPhotos object.
|
||||
*
|
||||
*
|
||||
* @param string $text (optional) The value to represent.
|
||||
*/
|
||||
public function __construct($text = null)
|
||||
public function __construct($text = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Photos::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
|
||||
parent::__construct();
|
||||
$this->setText($text);
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ require_once 'Zend/Gdata/Photos.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Photos
|
||||
* @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,17 +45,15 @@ class Zend_Gdata_Photos_Extension_NumPhotosRemaining extends Zend_Gdata_Extensio
|
||||
|
||||
protected $_rootNamespace = 'gphoto';
|
||||
protected $_rootElement = 'numphotosremaining';
|
||||
|
||||
|
||||
/**
|
||||
* Constructs a new Zend_Gdata_Photos_Extension_NumPhotosRemaining object.
|
||||
*
|
||||
*
|
||||
* @param string $text (optional) The value to represent.
|
||||
*/
|
||||
public function __construct($text = null)
|
||||
public function __construct($text = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Photos::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
|
||||
parent::__construct();
|
||||
$this->setText($text);
|
||||
}
|
||||
|
@ -35,6 +35,7 @@ require_once 'Zend/Gdata/Photos.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Photos
|
||||
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
@ -43,17 +44,15 @@ class Zend_Gdata_Photos_Extension_PhotoId extends Zend_Gdata_Extension
|
||||
|
||||
protected $_rootNamespace = 'gphoto';
|
||||
protected $_rootElement = 'id';
|
||||
|
||||
|
||||
/**
|
||||
* Constructs a new Zend_Gdata_Photos_Extension_PhotoId object.
|
||||
*
|
||||
*
|
||||
* @param string $text (optional) The value to represent.
|
||||
*/
|
||||
public function __construct($text = null)
|
||||
public function __construct($text = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Photos::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
|
||||
parent::__construct();
|
||||
$this->setText($text);
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ require_once 'Zend/Gdata/Photos.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Photos
|
||||
* @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,17 +45,15 @@ class Zend_Gdata_Photos_Extension_Position extends Zend_Gdata_Extension
|
||||
|
||||
protected $_rootNamespace = 'gphoto';
|
||||
protected $_rootElement = 'position';
|
||||
|
||||
|
||||
/**
|
||||
* Constructs a new Zend_Gdata_Photos_Extension_Position object.
|
||||
*
|
||||
*
|
||||
* @param string $text (optional) The value to represent.
|
||||
*/
|
||||
public function __construct($text = null)
|
||||
public function __construct($text = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Photos::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
|
||||
parent::__construct();
|
||||
$this->setText($text);
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ require_once 'Zend/Gdata/Photos.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Photos
|
||||
* @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,17 +45,15 @@ class Zend_Gdata_Photos_Extension_QuotaCurrent extends Zend_Gdata_Extension
|
||||
|
||||
protected $_rootNamespace = 'gphoto';
|
||||
protected $_rootElement = 'quotaCurrent';
|
||||
|
||||
|
||||
/**
|
||||
* Constructs a new Zend_Gdata_Photos_Extension_QuotaCurrent object.
|
||||
*
|
||||
*
|
||||
* @param string $text (optional) The value being represented.
|
||||
*/
|
||||
public function __construct($text = null)
|
||||
public function __construct($text = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Photos::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
|
||||
parent::__construct();
|
||||
$this->setText($text);
|
||||
}
|
||||
|
@ -37,6 +37,7 @@ require_once 'Zend/Gdata/Photos.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Photos
|
||||
* @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,17 +46,15 @@ class Zend_Gdata_Photos_Extension_QuotaLimit extends Zend_Gdata_Extension
|
||||
|
||||
protected $_rootNamespace = 'gphoto';
|
||||
protected $_rootElement = 'quotaLimit';
|
||||
|
||||
|
||||
/**
|
||||
* Constructs a new Zend_Gdata_Photos_Extension_QuotaLimit object.
|
||||
*
|
||||
*
|
||||
* @param string $text (optional) The value being represented.
|
||||
*/
|
||||
public function __construct($text = null)
|
||||
public function __construct($text = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Photos::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
|
||||
parent::__construct();
|
||||
$this->setText($text);
|
||||
}
|
||||
|
@ -37,6 +37,7 @@ require_once 'Zend/Gdata/Photos.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Photos
|
||||
* @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,17 +46,15 @@ class Zend_Gdata_Photos_Extension_Rotation extends Zend_Gdata_Extension
|
||||
|
||||
protected $_rootNamespace = 'gphoto';
|
||||
protected $_rootElement = 'rotation';
|
||||
|
||||
|
||||
/**
|
||||
* Constructs a new Zend_Gdata_Photos_Extension_Rotation object.
|
||||
*
|
||||
*
|
||||
* @param string $text (optional) The value to represent.
|
||||
*/
|
||||
public function __construct($text = null)
|
||||
public function __construct($text = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Photos::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
|
||||
parent::__construct();
|
||||
$this->setText($text);
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ require_once 'Zend/Gdata/Photos.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Photos
|
||||
* @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,17 +45,15 @@ class Zend_Gdata_Photos_Extension_Size extends Zend_Gdata_Extension
|
||||
|
||||
protected $_rootNamespace = 'gphoto';
|
||||
protected $_rootElement = 'size';
|
||||
|
||||
|
||||
/**
|
||||
* Constructs a new Zend_Gdata_Photos_Extension_Size object.
|
||||
*
|
||||
*
|
||||
* @param string $text (optional) The value to represent.
|
||||
*/
|
||||
public function __construct($text = null)
|
||||
public function __construct($text = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Photos::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
|
||||
parent::__construct();
|
||||
$this->setText($text);
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ require_once 'Zend/Gdata/Photos.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Photos
|
||||
* @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,17 +45,15 @@ class Zend_Gdata_Photos_Extension_Thumbnail extends Zend_Gdata_Extension
|
||||
|
||||
protected $_rootNamespace = 'gphoto';
|
||||
protected $_rootElement = 'thumbnail';
|
||||
|
||||
|
||||
/**
|
||||
* Constructs a new Zend_Gdata_Photos_Extension_Thumbnail object.
|
||||
*
|
||||
*
|
||||
* @param string $text (optional) The thumbnail URI to represent.
|
||||
*/
|
||||
public function __construct($text = null)
|
||||
public function __construct($text = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Photos::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
|
||||
parent::__construct();
|
||||
$this->setText($text);
|
||||
}
|
||||
|
@ -37,6 +37,7 @@ require_once 'Zend/Gdata/Photos.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Photos
|
||||
* @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,17 +46,15 @@ class Zend_Gdata_Photos_Extension_Timestamp extends Zend_Gdata_Extension
|
||||
|
||||
protected $_rootNamespace = 'gphoto';
|
||||
protected $_rootElement = 'timestamp';
|
||||
|
||||
|
||||
/**
|
||||
* Constructs a new Zend_Gdata_Photos_Extension_Timestamp object.
|
||||
*
|
||||
*
|
||||
* @param string $text (optional) The value to represent.
|
||||
*/
|
||||
public function __construct($text = null)
|
||||
public function __construct($text = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Photos::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
|
||||
parent::__construct();
|
||||
$this->setText($text);
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ require_once 'Zend/Gdata/Photos.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Photos
|
||||
* @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,17 +45,15 @@ class Zend_Gdata_Photos_Extension_User extends Zend_Gdata_Extension
|
||||
|
||||
protected $_rootNamespace = 'gphoto';
|
||||
protected $_rootElement = 'user';
|
||||
|
||||
|
||||
/**
|
||||
* Constructs a new Zend_Gdata_Photos_Extension_User object.
|
||||
*
|
||||
*
|
||||
* @param string $text (optional) The username to represent.
|
||||
*/
|
||||
public function __construct($text = null)
|
||||
public function __construct($text = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Photos::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
|
||||
parent::__construct();
|
||||
$this->setText($text);
|
||||
}
|
||||
|
@ -37,6 +37,7 @@ require_once 'Zend/Gdata/Photos.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Photos
|
||||
* @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,17 +46,15 @@ class Zend_Gdata_Photos_Extension_Version extends Zend_Gdata_Extension
|
||||
|
||||
protected $_rootNamespace = 'gphoto';
|
||||
protected $_rootElement = 'version';
|
||||
|
||||
|
||||
/**
|
||||
* Constructs a new Zend_Gdata_Photos_Extension_Version object.
|
||||
*
|
||||
*
|
||||
* @param string $text (optional) The value to represent.
|
||||
*/
|
||||
public function __construct($text = null)
|
||||
public function __construct($text = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Photos::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
|
||||
parent::__construct();
|
||||
$this->setText($text);
|
||||
}
|
||||
|
@ -37,6 +37,7 @@ require_once 'Zend/Gdata/Photos.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Photos
|
||||
* @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,17 +46,15 @@ class Zend_Gdata_Photos_Extension_Weight extends Zend_Gdata_Extension
|
||||
|
||||
protected $_rootNamespace = 'gphoto';
|
||||
protected $_rootElement = 'weight';
|
||||
|
||||
|
||||
/**
|
||||
* Constructs a new Zend_Gdata_Photos_Extension_Weight object.
|
||||
*
|
||||
*
|
||||
* @param string $text (optional) The value to represent.
|
||||
*/
|
||||
public function __construct($text = null)
|
||||
public function __construct($text = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Photos::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
|
||||
parent::__construct();
|
||||
$this->setText($text);
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ require_once 'Zend/Gdata/Photos.php';
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Gdata
|
||||
* @subpackage Photos
|
||||
* @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,17 +45,15 @@ class Zend_Gdata_Photos_Extension_Width extends Zend_Gdata_Extension
|
||||
|
||||
protected $_rootNamespace = 'gphoto';
|
||||
protected $_rootElement = 'width';
|
||||
|
||||
|
||||
/**
|
||||
* Constructs a new Zend_Gdata_Photos_Extension_Width object.
|
||||
*
|
||||
*
|
||||
* @param string $text (optional) The value to represent.
|
||||
*/
|
||||
public function __construct($text = null)
|
||||
public function __construct($text = null)
|
||||
{
|
||||
foreach (Zend_Gdata_Photos::$namespaces as $nsPrefix => $nsUri) {
|
||||
$this->registerNamespace($nsPrefix, $nsUri);
|
||||
}
|
||||
$this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
|
||||
parent::__construct();
|
||||
$this->setText($text);
|
||||
}
|
||||
|
Reference in New Issue
Block a user