summaryrefslogtreecommitdiff
path: root/zend/library/Zend/Gdata/Photos/Extension
diff options
context:
space:
mode:
authorHorus32014-02-24 16:42:14 +0100
committerHorus32014-02-24 16:42:14 +0100
commit06f945f27840b53e57795dadbc38e76f7e11ab1c (patch)
tree689d5c7f4ffa15460c7e90f47c6a7dd59ce4e8bd /zend/library/Zend/Gdata/Photos/Extension
downloadrandom-06f945f27840b53e57795dadbc38e76f7e11ab1c.tar.gz
init
Diffstat (limited to 'zend/library/Zend/Gdata/Photos/Extension')
-rwxr-xr-xzend/library/Zend/Gdata/Photos/Extension/Access.php63
-rwxr-xr-xzend/library/Zend/Gdata/Photos/Extension/AlbumId.php63
-rwxr-xr-xzend/library/Zend/Gdata/Photos/Extension/BytesUsed.php62
-rwxr-xr-xzend/library/Zend/Gdata/Photos/Extension/Checksum.php63
-rwxr-xr-xzend/library/Zend/Gdata/Photos/Extension/Client.php63
-rwxr-xr-xzend/library/Zend/Gdata/Photos/Extension/CommentCount.php63
-rwxr-xr-xzend/library/Zend/Gdata/Photos/Extension/CommentingEnabled.php64
-rwxr-xr-xzend/library/Zend/Gdata/Photos/Extension/Height.php62
-rwxr-xr-xzend/library/Zend/Gdata/Photos/Extension/Id.php62
-rwxr-xr-xzend/library/Zend/Gdata/Photos/Extension/Location.php62
-rwxr-xr-xzend/library/Zend/Gdata/Photos/Extension/MaxPhotosPerAlbum.php63
-rwxr-xr-xzend/library/Zend/Gdata/Photos/Extension/Name.php62
-rwxr-xr-xzend/library/Zend/Gdata/Photos/Extension/Nickname.php62
-rwxr-xr-xzend/library/Zend/Gdata/Photos/Extension/NumPhotos.php62
-rwxr-xr-xzend/library/Zend/Gdata/Photos/Extension/NumPhotosRemaining.php62
-rwxr-xr-xzend/library/Zend/Gdata/Photos/Extension/PhotoId.php61
-rwxr-xr-xzend/library/Zend/Gdata/Photos/Extension/Position.php62
-rwxr-xr-xzend/library/Zend/Gdata/Photos/Extension/QuotaCurrent.php62
-rwxr-xr-xzend/library/Zend/Gdata/Photos/Extension/QuotaLimit.php63
-rwxr-xr-xzend/library/Zend/Gdata/Photos/Extension/Rotation.php63
-rwxr-xr-xzend/library/Zend/Gdata/Photos/Extension/Size.php62
-rwxr-xr-xzend/library/Zend/Gdata/Photos/Extension/Thumbnail.php62
-rwxr-xr-xzend/library/Zend/Gdata/Photos/Extension/Timestamp.php63
-rwxr-xr-xzend/library/Zend/Gdata/Photos/Extension/User.php62
-rwxr-xr-xzend/library/Zend/Gdata/Photos/Extension/Version.php63
-rwxr-xr-xzend/library/Zend/Gdata/Photos/Extension/Weight.php63
-rwxr-xr-xzend/library/Zend/Gdata/Photos/Extension/Width.php62
27 files changed, 1686 insertions, 0 deletions
diff --git a/zend/library/Zend/Gdata/Photos/Extension/Access.php b/zend/library/Zend/Gdata/Photos/Extension/Access.php
new file mode 100755
index 0000000..d3040a2
--- /dev/null
+++ b/zend/library/Zend/Gdata/Photos/Extension/Access.php
@@ -0,0 +1,63 @@
+<?php
+
+/**
+ * Zend Framework
+ *
+ * LICENSE
+ *
+ * This source file is subject to the new BSD license that is bundled
+ * with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://framework.zend.com/license/new-bsd
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to license@zend.com so we can send you a copy immediately.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ * @version $Id: Access.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * @see Zend_Gdata_Photos
+ */
+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
+ * the strings 'private' or 'public'.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ */
+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)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
+ parent::__construct();
+ $this->setText($text);
+ }
+
+}
diff --git a/zend/library/Zend/Gdata/Photos/Extension/AlbumId.php b/zend/library/Zend/Gdata/Photos/Extension/AlbumId.php
new file mode 100755
index 0000000..1efb08b
--- /dev/null
+++ b/zend/library/Zend/Gdata/Photos/Extension/AlbumId.php
@@ -0,0 +1,63 @@
+<?php
+
+/**
+ * Zend Framework
+ *
+ * LICENSE
+ *
+ * This source file is subject to the new BSD license that is bundled
+ * with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://framework.zend.com/license/new-bsd
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to license@zend.com so we can send you a copy immediately.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ * @version $Id: AlbumId.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * @see Zend_Gdata_Photos
+ */
+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
+ * within an instance of Zend_Gdata_Photos_AlbumEntry or CommentEntry.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ */
+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)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
+ parent::__construct();
+ $this->setText($text);
+ }
+
+}
diff --git a/zend/library/Zend/Gdata/Photos/Extension/BytesUsed.php b/zend/library/Zend/Gdata/Photos/Extension/BytesUsed.php
new file mode 100755
index 0000000..14a6e4b
--- /dev/null
+++ b/zend/library/Zend/Gdata/Photos/Extension/BytesUsed.php
@@ -0,0 +1,62 @@
+<?php
+
+/**
+ * Zend Framework
+ *
+ * LICENSE
+ *
+ * This source file is subject to the new BSD license that is bundled
+ * with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://framework.zend.com/license/new-bsd
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to license@zend.com so we can send you a copy immediately.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ * @version $Id: BytesUsed.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * @see Zend_Gdata_Photos
+ */
+require_once 'Zend/Gdata/Photos.php';
+
+/**
+ * Represents the gphoto:bytesUsed element used by the API.
+ * This indicates the number of bytes of storage used by an album.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ */
+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)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
+ parent::__construct();
+ $this->setText($text);
+ }
+
+}
diff --git a/zend/library/Zend/Gdata/Photos/Extension/Checksum.php b/zend/library/Zend/Gdata/Photos/Extension/Checksum.php
new file mode 100755
index 0000000..1f252f6
--- /dev/null
+++ b/zend/library/Zend/Gdata/Photos/Extension/Checksum.php
@@ -0,0 +1,63 @@
+<?php
+
+/**
+ * Zend Framework
+ *
+ * LICENSE
+ *
+ * This source file is subject to the new BSD license that is bundled
+ * with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://framework.zend.com/license/new-bsd
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to license@zend.com so we can send you a copy immediately.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ * @version $Id: Checksum.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * @see Zend_Gdata_Photos
+ */
+require_once 'Zend/Gdata/Photos.php';
+
+/**
+ * Represents the gphoto:checksum element used by the API.
+ * This is an optional field that can be used to store a photo's
+ * checksum to ease duplicate checking.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ */
+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)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
+ parent::__construct();
+ $this->setText($text);
+ }
+
+}
diff --git a/zend/library/Zend/Gdata/Photos/Extension/Client.php b/zend/library/Zend/Gdata/Photos/Extension/Client.php
new file mode 100755
index 0000000..72335bf
--- /dev/null
+++ b/zend/library/Zend/Gdata/Photos/Extension/Client.php
@@ -0,0 +1,63 @@
+<?php
+
+/**
+ * Zend Framework
+ *
+ * LICENSE
+ *
+ * This source file is subject to the new BSD license that is bundled
+ * with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://framework.zend.com/license/new-bsd
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to license@zend.com so we can send you a copy immediately.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ * @version $Id: Client.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * @see Zend_Gdata_Photos
+ */
+require_once 'Zend/Gdata/Photos.php';
+
+/**
+ * Represents the gphoto:client element used by the API.
+ * This is an optional field that can be used to indicate the
+ * client which created a photo.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ */
+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)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
+ parent::__construct();
+ $this->setText($text);
+ }
+
+}
diff --git a/zend/library/Zend/Gdata/Photos/Extension/CommentCount.php b/zend/library/Zend/Gdata/Photos/Extension/CommentCount.php
new file mode 100755
index 0000000..d3742ef
--- /dev/null
+++ b/zend/library/Zend/Gdata/Photos/Extension/CommentCount.php
@@ -0,0 +1,63 @@
+<?php
+
+/**
+ * Zend Framework
+ *
+ * LICENSE
+ *
+ * This source file is subject to the new BSD license that is bundled
+ * with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://framework.zend.com/license/new-bsd
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to license@zend.com so we can send you a copy immediately.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ * @version $Id: CommentCount.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * @see Zend_Gdata_Photos
+ */
+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
+ * within an instance of Zend_Gdata_Photos_PhotoEntry or AlbumEntry.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ */
+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)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
+ parent::__construct();
+ $this->setText($text);
+ }
+
+}
diff --git a/zend/library/Zend/Gdata/Photos/Extension/CommentingEnabled.php b/zend/library/Zend/Gdata/Photos/Extension/CommentingEnabled.php
new file mode 100755
index 0000000..5440960
--- /dev/null
+++ b/zend/library/Zend/Gdata/Photos/Extension/CommentingEnabled.php
@@ -0,0 +1,64 @@
+<?php
+
+/**
+ * Zend Framework
+ *
+ * LICENSE
+ *
+ * This source file is subject to the new BSD license that is bundled
+ * with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://framework.zend.com/license/new-bsd
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to license@zend.com so we can send you a copy immediately.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ * @version $Id: CommentingEnabled.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * @see Zend_Gdata_Photos
+ */
+require_once 'Zend/Gdata/Photos.php';
+
+/**
+ * Represents the gphoto:commentingEnabled element used by the API.
+ * This class represents whether commenting is enabled for a given
+ * entry.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ */
+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)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
+ parent::__construct();
+ $this->setText($text);
+ }
+
+}
diff --git a/zend/library/Zend/Gdata/Photos/Extension/Height.php b/zend/library/Zend/Gdata/Photos/Extension/Height.php
new file mode 100755
index 0000000..ab7ab00
--- /dev/null
+++ b/zend/library/Zend/Gdata/Photos/Extension/Height.php
@@ -0,0 +1,62 @@
+<?php
+
+/**
+ * Zend Framework
+ *
+ * LICENSE
+ *
+ * This source file is subject to the new BSD license that is bundled
+ * with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://framework.zend.com/license/new-bsd
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to license@zend.com so we can send you a copy immediately.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ * @version $Id: Height.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * @see Zend_Gdata_Photos
+ */
+require_once 'Zend/Gdata/Photos.php';
+
+/**
+ * Represents the gphoto:height element used by the API.
+ * The height of a photo in pixels.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ */
+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)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
+ parent::__construct();
+ $this->setText($text);
+ }
+
+}
diff --git a/zend/library/Zend/Gdata/Photos/Extension/Id.php b/zend/library/Zend/Gdata/Photos/Extension/Id.php
new file mode 100755
index 0000000..0121643
--- /dev/null
+++ b/zend/library/Zend/Gdata/Photos/Extension/Id.php
@@ -0,0 +1,62 @@
+<?php
+
+/**
+ * Zend Framework
+ *
+ * LICENSE
+ *
+ * This source file is subject to the new BSD license that is bundled
+ * with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://framework.zend.com/license/new-bsd
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to license@zend.com so we can send you a copy immediately.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ * @version $Id: Id.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * @see Zend_Gdata_Photos
+ */
+require_once 'Zend/Gdata/Photos.php';
+
+/**
+ * Represents the gphoto:id element used by the API. This class
+ * represents the unique ID assigned to an element by the servers.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ */
+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)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
+ parent::__construct();
+ $this->setText($text);
+ }
+
+}
diff --git a/zend/library/Zend/Gdata/Photos/Extension/Location.php b/zend/library/Zend/Gdata/Photos/Extension/Location.php
new file mode 100755
index 0000000..fa60312
--- /dev/null
+++ b/zend/library/Zend/Gdata/Photos/Extension/Location.php
@@ -0,0 +1,62 @@
+<?php
+
+/**
+ * Zend Framework
+ *
+ * LICENSE
+ *
+ * This source file is subject to the new BSD license that is bundled
+ * with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://framework.zend.com/license/new-bsd
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to license@zend.com so we can send you a copy immediately.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ * @version $Id: Location.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * @see Zend_Gdata_Photos
+ */
+require_once 'Zend/Gdata/Photos.php';
+
+/**
+ * Represents the gphoto:location element used by the API.
+ * This indicates the number of bytes of storage used by an album.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ */
+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)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
+ parent::__construct();
+ $this->setText($text);
+ }
+
+}
diff --git a/zend/library/Zend/Gdata/Photos/Extension/MaxPhotosPerAlbum.php b/zend/library/Zend/Gdata/Photos/Extension/MaxPhotosPerAlbum.php
new file mode 100755
index 0000000..1deb2bc
--- /dev/null
+++ b/zend/library/Zend/Gdata/Photos/Extension/MaxPhotosPerAlbum.php
@@ -0,0 +1,63 @@
+<?php
+
+/**
+ * Zend Framework
+ *
+ * LICENSE
+ *
+ * This source file is subject to the new BSD license that is bundled
+ * with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://framework.zend.com/license/new-bsd
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to license@zend.com so we can send you a copy immediately.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ * @version $Id: MaxPhotosPerAlbum.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * @see Zend_Gdata_Photos
+ */
+require_once 'Zend/Gdata/Photos.php';
+
+/**
+ * Represents the gphoto:maxPhotosPerAlbum element used by the API.
+ * This class represents the maximum number of photos allowed in an
+ * album.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ */
+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)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
+ parent::__construct();
+ $this->setText($text);
+ }
+
+}
diff --git a/zend/library/Zend/Gdata/Photos/Extension/Name.php b/zend/library/Zend/Gdata/Photos/Extension/Name.php
new file mode 100755
index 0000000..94e30f4
--- /dev/null
+++ b/zend/library/Zend/Gdata/Photos/Extension/Name.php
@@ -0,0 +1,62 @@
+<?php
+
+/**
+ * Zend Framework
+ *
+ * LICENSE
+ *
+ * This source file is subject to the new BSD license that is bundled
+ * with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://framework.zend.com/license/new-bsd
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to license@zend.com so we can send you a copy immediately.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ * @version $Id: Name.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * @see Zend_Gdata_Photos
+ */
+require_once 'Zend/Gdata/Photos.php';
+
+/**
+ * Represents the gphoto:name element used by the API.
+ * This indicates the URL-usable name for an album.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ */
+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)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
+ parent::__construct();
+ $this->setText($text);
+ }
+
+}
diff --git a/zend/library/Zend/Gdata/Photos/Extension/Nickname.php b/zend/library/Zend/Gdata/Photos/Extension/Nickname.php
new file mode 100755
index 0000000..8d64966
--- /dev/null
+++ b/zend/library/Zend/Gdata/Photos/Extension/Nickname.php
@@ -0,0 +1,62 @@
+<?php
+
+/**
+ * Zend Framework
+ *
+ * LICENSE
+ *
+ * This source file is subject to the new BSD license that is bundled
+ * with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://framework.zend.com/license/new-bsd
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to license@zend.com so we can send you a copy immediately.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ * @version $Id: Nickname.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * @see Zend_Gdata_Photos
+ */
+require_once 'Zend/Gdata/Photos.php';
+
+/**
+ * Represents the gphoto:nickname element used by the API.
+ * This class represents the nickname for a user.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ */
+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)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
+ parent::__construct();
+ $this->setText($text);
+ }
+
+}
diff --git a/zend/library/Zend/Gdata/Photos/Extension/NumPhotos.php b/zend/library/Zend/Gdata/Photos/Extension/NumPhotos.php
new file mode 100755
index 0000000..ef60301
--- /dev/null
+++ b/zend/library/Zend/Gdata/Photos/Extension/NumPhotos.php
@@ -0,0 +1,62 @@
+<?php
+
+/**
+ * Zend Framework
+ *
+ * LICENSE
+ *
+ * This source file is subject to the new BSD license that is bundled
+ * with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://framework.zend.com/license/new-bsd
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to license@zend.com so we can send you a copy immediately.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ * @version $Id: NumPhotos.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * @see Zend_Gdata_Photos
+ */
+require_once 'Zend/Gdata/Photos.php';
+
+/**
+ * Represents the gphoto:numphotos element used by the API.
+ * This indicates the number of photos in an album.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ */
+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)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
+ parent::__construct();
+ $this->setText($text);
+ }
+
+}
diff --git a/zend/library/Zend/Gdata/Photos/Extension/NumPhotosRemaining.php b/zend/library/Zend/Gdata/Photos/Extension/NumPhotosRemaining.php
new file mode 100755
index 0000000..6bf42e6
--- /dev/null
+++ b/zend/library/Zend/Gdata/Photos/Extension/NumPhotosRemaining.php
@@ -0,0 +1,62 @@
+<?php
+
+/**
+ * Zend Framework
+ *
+ * LICENSE
+ *
+ * This source file is subject to the new BSD license that is bundled
+ * with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://framework.zend.com/license/new-bsd
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to license@zend.com so we can send you a copy immediately.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ * @version $Id: NumPhotosRemaining.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * @see Zend_Gdata_Photos
+ */
+require_once 'Zend/Gdata/Photos.php';
+
+/**
+ * Represents the gphoto:numphotosremaining element used by the API.
+ * This indicates the number of photos remaining in an album.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ */
+class Zend_Gdata_Photos_Extension_NumPhotosRemaining extends Zend_Gdata_Extension
+{
+
+ 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)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
+ parent::__construct();
+ $this->setText($text);
+ }
+
+}
diff --git a/zend/library/Zend/Gdata/Photos/Extension/PhotoId.php b/zend/library/Zend/Gdata/Photos/Extension/PhotoId.php
new file mode 100755
index 0000000..5c71f39
--- /dev/null
+++ b/zend/library/Zend/Gdata/Photos/Extension/PhotoId.php
@@ -0,0 +1,61 @@
+<?php
+
+/**
+ * Zend Framework
+ *
+ * LICENSE
+ *
+ * This source file is subject to the new BSD license that is bundled
+ * with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://framework.zend.com/license/new-bsd
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to license@zend.com so we can send you a copy immediately.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ * @version $Id: PhotoId.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * @see Zend_Gdata_Photos
+ */
+require_once 'Zend/Gdata/Photos.php';
+
+/**
+ * Represents the gphoto:id element used by the Picasa API.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ */
+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)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
+ parent::__construct();
+ $this->setText($text);
+ }
+
+}
diff --git a/zend/library/Zend/Gdata/Photos/Extension/Position.php b/zend/library/Zend/Gdata/Photos/Extension/Position.php
new file mode 100755
index 0000000..75e9988
--- /dev/null
+++ b/zend/library/Zend/Gdata/Photos/Extension/Position.php
@@ -0,0 +1,62 @@
+<?php
+
+/**
+ * Zend Framework
+ *
+ * LICENSE
+ *
+ * This source file is subject to the new BSD license that is bundled
+ * with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://framework.zend.com/license/new-bsd
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to license@zend.com so we can send you a copy immediately.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ * @version $Id: Position.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * @see Zend_Gdata_Photos
+ */
+require_once 'Zend/Gdata/Photos.php';
+
+/**
+ * Represents the gphoto:position element used by the API.
+ * The ordinal position of a photo within an album.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ */
+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)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
+ parent::__construct();
+ $this->setText($text);
+ }
+
+}
diff --git a/zend/library/Zend/Gdata/Photos/Extension/QuotaCurrent.php b/zend/library/Zend/Gdata/Photos/Extension/QuotaCurrent.php
new file mode 100755
index 0000000..3caa587
--- /dev/null
+++ b/zend/library/Zend/Gdata/Photos/Extension/QuotaCurrent.php
@@ -0,0 +1,62 @@
+<?php
+
+/**
+ * Zend Framework
+ *
+ * LICENSE
+ *
+ * This source file is subject to the new BSD license that is bundled
+ * with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://framework.zend.com/license/new-bsd
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to license@zend.com so we can send you a copy immediately.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ * @version $Id: QuotaCurrent.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * @see Zend_Gdata_Photos
+ */
+require_once 'Zend/Gdata/Photos.php';
+
+/**
+ * Represents the gphoto:quotaCurrent element used by the API.
+ * This class represents the number of bytes of storage used by a user.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ */
+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)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
+ parent::__construct();
+ $this->setText($text);
+ }
+
+}
diff --git a/zend/library/Zend/Gdata/Photos/Extension/QuotaLimit.php b/zend/library/Zend/Gdata/Photos/Extension/QuotaLimit.php
new file mode 100755
index 0000000..7f074cc
--- /dev/null
+++ b/zend/library/Zend/Gdata/Photos/Extension/QuotaLimit.php
@@ -0,0 +1,63 @@
+<?php
+
+/**
+ * Zend Framework
+ *
+ * LICENSE
+ *
+ * This source file is subject to the new BSD license that is bundled
+ * with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://framework.zend.com/license/new-bsd
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to license@zend.com so we can send you a copy immediately.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ * @version $Id: QuotaLimit.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * @see Zend_Gdata_Photos
+ */
+require_once 'Zend/Gdata/Photos.php';
+
+/**
+ * Represents the gphoto:quotaLimit element used by the API.
+ * This class represents the number of bytes of storage available for
+ * a user.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ */
+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)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
+ parent::__construct();
+ $this->setText($text);
+ }
+
+}
diff --git a/zend/library/Zend/Gdata/Photos/Extension/Rotation.php b/zend/library/Zend/Gdata/Photos/Extension/Rotation.php
new file mode 100755
index 0000000..9d10263
--- /dev/null
+++ b/zend/library/Zend/Gdata/Photos/Extension/Rotation.php
@@ -0,0 +1,63 @@
+<?php
+
+/**
+ * Zend Framework
+ *
+ * LICENSE
+ *
+ * This source file is subject to the new BSD license that is bundled
+ * with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://framework.zend.com/license/new-bsd
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to license@zend.com so we can send you a copy immediately.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ * @version $Id: Rotation.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * @see Zend_Gdata_Photos
+ */
+require_once 'Zend/Gdata/Photos.php';
+
+/**
+ * Represents the gphoto:rotation element used by the API.
+ * The rotation of a photo in degrees. Will only be shown if the
+ * rotation has not already been applied to the image.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ */
+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)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
+ parent::__construct();
+ $this->setText($text);
+ }
+
+}
diff --git a/zend/library/Zend/Gdata/Photos/Extension/Size.php b/zend/library/Zend/Gdata/Photos/Extension/Size.php
new file mode 100755
index 0000000..932b4b4
--- /dev/null
+++ b/zend/library/Zend/Gdata/Photos/Extension/Size.php
@@ -0,0 +1,62 @@
+<?php
+
+/**
+ * Zend Framework
+ *
+ * LICENSE
+ *
+ * This source file is subject to the new BSD license that is bundled
+ * with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://framework.zend.com/license/new-bsd
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to license@zend.com so we can send you a copy immediately.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ * @version $Id: Size.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * @see Zend_Gdata_Photos
+ */
+require_once 'Zend/Gdata/Photos.php';
+
+/**
+ * Represents the gphoto:size element used by the API.
+ * The size of a photo in bytes.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ */
+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)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
+ parent::__construct();
+ $this->setText($text);
+ }
+
+}
diff --git a/zend/library/Zend/Gdata/Photos/Extension/Thumbnail.php b/zend/library/Zend/Gdata/Photos/Extension/Thumbnail.php
new file mode 100755
index 0000000..6512e9f
--- /dev/null
+++ b/zend/library/Zend/Gdata/Photos/Extension/Thumbnail.php
@@ -0,0 +1,62 @@
+<?php
+
+/**
+ * Zend Framework
+ *
+ * LICENSE
+ *
+ * This source file is subject to the new BSD license that is bundled
+ * with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://framework.zend.com/license/new-bsd
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to license@zend.com so we can send you a copy immediately.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ * @version $Id: Thumbnail.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * @see Zend_Gdata_Photos
+ */
+require_once 'Zend/Gdata/Photos.php';
+
+/**
+ * Represents the gphoto:thumbnail element used by the API.
+ * This class represents the URI for a thumbnail image.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ */
+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)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
+ parent::__construct();
+ $this->setText($text);
+ }
+
+}
diff --git a/zend/library/Zend/Gdata/Photos/Extension/Timestamp.php b/zend/library/Zend/Gdata/Photos/Extension/Timestamp.php
new file mode 100755
index 0000000..48f6302
--- /dev/null
+++ b/zend/library/Zend/Gdata/Photos/Extension/Timestamp.php
@@ -0,0 +1,63 @@
+<?php
+
+/**
+ * Zend Framework
+ *
+ * LICENSE
+ *
+ * This source file is subject to the new BSD license that is bundled
+ * with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://framework.zend.com/license/new-bsd
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to license@zend.com so we can send you a copy immediately.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ * @version $Id: Timestamp.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * @see Zend_Gdata_Photos
+ */
+require_once 'Zend/Gdata/Photos.php';
+
+/**
+ * Represents the gphoto:timestamp element used by the API.
+ * The timestamp of a photo in milliseconds since January 1, 1970.
+ * This date is either set externally or based on EXIF data.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ */
+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)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
+ parent::__construct();
+ $this->setText($text);
+ }
+
+}
diff --git a/zend/library/Zend/Gdata/Photos/Extension/User.php b/zend/library/Zend/Gdata/Photos/Extension/User.php
new file mode 100755
index 0000000..a452a1c
--- /dev/null
+++ b/zend/library/Zend/Gdata/Photos/Extension/User.php
@@ -0,0 +1,62 @@
+<?php
+
+/**
+ * Zend Framework
+ *
+ * LICENSE
+ *
+ * This source file is subject to the new BSD license that is bundled
+ * with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://framework.zend.com/license/new-bsd
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to license@zend.com so we can send you a copy immediately.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ * @version $Id: User.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * @see Zend_Gdata_Photos
+ */
+require_once 'Zend/Gdata/Photos.php';
+
+/**
+ * Represents the gphoto:user element used by the API.
+ * This class represents the username for a user.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ */
+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)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
+ parent::__construct();
+ $this->setText($text);
+ }
+
+}
diff --git a/zend/library/Zend/Gdata/Photos/Extension/Version.php b/zend/library/Zend/Gdata/Photos/Extension/Version.php
new file mode 100755
index 0000000..cf759f0
--- /dev/null
+++ b/zend/library/Zend/Gdata/Photos/Extension/Version.php
@@ -0,0 +1,63 @@
+<?php
+
+/**
+ * Zend Framework
+ *
+ * LICENSE
+ *
+ * This source file is subject to the new BSD license that is bundled
+ * with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://framework.zend.com/license/new-bsd
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to license@zend.com so we can send you a copy immediately.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ * @version $Id: Version.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * @see Zend_Gdata_Photos
+ */
+require_once 'Zend/Gdata/Photos.php';
+
+/**
+ * Represents the gphoto:version element used by the API.
+ * This number is used for optimistic concurrency, and does not
+ * increase linearly.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ */
+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)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
+ parent::__construct();
+ $this->setText($text);
+ }
+
+}
diff --git a/zend/library/Zend/Gdata/Photos/Extension/Weight.php b/zend/library/Zend/Gdata/Photos/Extension/Weight.php
new file mode 100755
index 0000000..7482104
--- /dev/null
+++ b/zend/library/Zend/Gdata/Photos/Extension/Weight.php
@@ -0,0 +1,63 @@
+<?php
+
+/**
+ * Zend Framework
+ *
+ * LICENSE
+ *
+ * This source file is subject to the new BSD license that is bundled
+ * with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://framework.zend.com/license/new-bsd
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to license@zend.com so we can send you a copy immediately.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ * @version $Id: Weight.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * @see Zend_Gdata_Photos
+ */
+require_once 'Zend/Gdata/Photos.php';
+
+/**
+ * Represents the gphoto:weight element used by the API.
+ * This indicates the weight of a tag, based on the number of times
+ * it appears in photos under the current element.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ */
+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)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
+ parent::__construct();
+ $this->setText($text);
+ }
+
+}
diff --git a/zend/library/Zend/Gdata/Photos/Extension/Width.php b/zend/library/Zend/Gdata/Photos/Extension/Width.php
new file mode 100755
index 0000000..e0fd78e
--- /dev/null
+++ b/zend/library/Zend/Gdata/Photos/Extension/Width.php
@@ -0,0 +1,62 @@
+<?php
+
+/**
+ * Zend Framework
+ *
+ * LICENSE
+ *
+ * This source file is subject to the new BSD license that is bundled
+ * with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://framework.zend.com/license/new-bsd
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to license@zend.com so we can send you a copy immediately.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ * @version $Id: Width.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * @see Zend_Gdata_Photos
+ */
+require_once 'Zend/Gdata/Photos.php';
+
+/**
+ * Represents the gphoto:width element used by the API.
+ * This indicates the width of a photo in pixels.
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage Photos
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ */
+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)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_Photos::$namespaces);
+ parent::__construct();
+ $this->setText($text);
+ }
+
+}