summaryrefslogtreecommitdiff
path: root/zend/library/Zend/Gdata/DublinCore/Extension
diff options
context:
space:
mode:
Diffstat (limited to 'zend/library/Zend/Gdata/DublinCore/Extension')
-rw-r--r--zend/library/Zend/Gdata/DublinCore/Extension/Creator.php58
-rw-r--r--zend/library/Zend/Gdata/DublinCore/Extension/Date.php60
-rw-r--r--zend/library/Zend/Gdata/DublinCore/Extension/Description.php58
-rw-r--r--zend/library/Zend/Gdata/DublinCore/Extension/Format.php58
-rw-r--r--zend/library/Zend/Gdata/DublinCore/Extension/Identifier.php58
-rw-r--r--zend/library/Zend/Gdata/DublinCore/Extension/Language.php58
-rw-r--r--zend/library/Zend/Gdata/DublinCore/Extension/Publisher.php58
-rw-r--r--zend/library/Zend/Gdata/DublinCore/Extension/Rights.php58
-rw-r--r--zend/library/Zend/Gdata/DublinCore/Extension/Subject.php58
-rw-r--r--zend/library/Zend/Gdata/DublinCore/Extension/Title.php58
10 files changed, 582 insertions, 0 deletions
diff --git a/zend/library/Zend/Gdata/DublinCore/Extension/Creator.php b/zend/library/Zend/Gdata/DublinCore/Extension/Creator.php
new file mode 100644
index 0000000..2c04df1
--- /dev/null
+++ b/zend/library/Zend/Gdata/DublinCore/Extension/Creator.php
@@ -0,0 +1,58 @@
+<?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 DublinCore
+ * @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: Creator.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * Entity primarily responsible for making the resource
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage DublinCore
+ * @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_DublinCore_Extension_Creator extends Zend_Gdata_Extension
+{
+
+ protected $_rootNamespace = 'dc';
+ protected $_rootElement = 'creator';
+
+ /**
+ * Constructor for Zend_Gdata_DublinCore_Extension_Creator which
+ * Entity primarily responsible for making the resource
+ *
+ * @param DOMElement $element (optional) DOMElement from which this
+ * object should be constructed.
+ */
+ public function __construct($value = null)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_DublinCore::$namespaces);
+ parent::__construct();
+ $this->_text = $value;
+ }
+
+}
diff --git a/zend/library/Zend/Gdata/DublinCore/Extension/Date.php b/zend/library/Zend/Gdata/DublinCore/Extension/Date.php
new file mode 100644
index 0000000..841840d
--- /dev/null
+++ b/zend/library/Zend/Gdata/DublinCore/Extension/Date.php
@@ -0,0 +1,60 @@
+<?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 DublinCore
+ * @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: Date.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * Point or period of time associated with an event in the lifecycle of the
+ * resource
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage DublinCore
+ * @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_DublinCore_Extension_Date extends Zend_Gdata_Extension
+{
+
+ protected $_rootNamespace = 'dc';
+ protected $_rootElement = 'date';
+
+ /**
+ * Constructor for Zend_Gdata_DublinCore_Extension_Date which
+ * Point or period of time associated with an event in the lifecycle of the
+ * resource
+ *
+ * @param DOMElement $element (optional) DOMElement from which this
+ * object should be constructed.
+ */
+ public function __construct($value = null)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_DublinCore::$namespaces);
+ parent::__construct();
+ $this->_text = $value;
+ }
+
+}
diff --git a/zend/library/Zend/Gdata/DublinCore/Extension/Description.php b/zend/library/Zend/Gdata/DublinCore/Extension/Description.php
new file mode 100644
index 0000000..05b7ea1
--- /dev/null
+++ b/zend/library/Zend/Gdata/DublinCore/Extension/Description.php
@@ -0,0 +1,58 @@
+<?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 DublinCore
+ * @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: Description.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * Account of the resource
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage DublinCore
+ * @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_DublinCore_Extension_Description extends Zend_Gdata_Extension
+{
+
+ protected $_rootNamespace = 'dc';
+ protected $_rootElement = 'description';
+
+ /**
+ * Constructor for Zend_Gdata_DublinCore_Extension_Description which
+ * Account of the resource
+ *
+ * @param DOMElement $element (optional) DOMElement from which this
+ * object should be constructed.
+ */
+ public function __construct($value = null)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_DublinCore::$namespaces);
+ parent::__construct();
+ $this->_text = $value;
+ }
+
+}
diff --git a/zend/library/Zend/Gdata/DublinCore/Extension/Format.php b/zend/library/Zend/Gdata/DublinCore/Extension/Format.php
new file mode 100644
index 0000000..8a71efd
--- /dev/null
+++ b/zend/library/Zend/Gdata/DublinCore/Extension/Format.php
@@ -0,0 +1,58 @@
+<?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 DublinCore
+ * @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: Format.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * File format, physical medium, or dimensions of the resource
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage DublinCore
+ * @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_DublinCore_Extension_Format extends Zend_Gdata_Extension
+{
+
+ protected $_rootNamespace = 'dc';
+ protected $_rootElement = 'format';
+
+ /**
+ * Constructor for Zend_Gdata_DublinCore_Extension_Format which
+ * File format, physical medium, or dimensions of the resource
+ *
+ * @param DOMElement $element (optional) DOMElement from which this
+ * object should be constructed.
+ */
+ public function __construct($value = null)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_DublinCore::$namespaces);
+ parent::__construct();
+ $this->_text = $value;
+ }
+
+}
diff --git a/zend/library/Zend/Gdata/DublinCore/Extension/Identifier.php b/zend/library/Zend/Gdata/DublinCore/Extension/Identifier.php
new file mode 100644
index 0000000..f69e38f
--- /dev/null
+++ b/zend/library/Zend/Gdata/DublinCore/Extension/Identifier.php
@@ -0,0 +1,58 @@
+<?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 DublinCore
+ * @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: Identifier.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * An unambiguous reference to the resource within a given context
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage DublinCore
+ * @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_DublinCore_Extension_Identifier extends Zend_Gdata_Extension
+{
+
+ protected $_rootNamespace = 'dc';
+ protected $_rootElement = 'identifier';
+
+ /**
+ * Constructor for Zend_Gdata_DublinCore_Extension_Identifier which
+ * An unambiguous reference to the resource within a given context
+ *
+ * @param DOMElement $element (optional) DOMElement from which this
+ * object should be constructed.
+ */
+ public function __construct($value = null)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_DublinCore::$namespaces);
+ parent::__construct();
+ $this->_text = $value;
+ }
+
+}
diff --git a/zend/library/Zend/Gdata/DublinCore/Extension/Language.php b/zend/library/Zend/Gdata/DublinCore/Extension/Language.php
new file mode 100644
index 0000000..fab4382
--- /dev/null
+++ b/zend/library/Zend/Gdata/DublinCore/Extension/Language.php
@@ -0,0 +1,58 @@
+<?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 DublinCore
+ * @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: Language.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * Language of the resource
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage DublinCore
+ * @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_DublinCore_Extension_Language extends Zend_Gdata_Extension
+{
+
+ protected $_rootNamespace = 'dc';
+ protected $_rootElement = 'language';
+
+ /**
+ * Constructor for Zend_Gdata_DublinCore_Extension_Language which
+ * Language of the resource
+ *
+ * @param DOMElement $element (optional) DOMElement from which this
+ * object should be constructed.
+ */
+ public function __construct($value = null)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_DublinCore::$namespaces);
+ parent::__construct();
+ $this->_text = $value;
+ }
+
+}
diff --git a/zend/library/Zend/Gdata/DublinCore/Extension/Publisher.php b/zend/library/Zend/Gdata/DublinCore/Extension/Publisher.php
new file mode 100644
index 0000000..c614572
--- /dev/null
+++ b/zend/library/Zend/Gdata/DublinCore/Extension/Publisher.php
@@ -0,0 +1,58 @@
+<?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 DublinCore
+ * @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: Publisher.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * Entity responsible for making the resource available
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage DublinCore
+ * @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_DublinCore_Extension_Publisher extends Zend_Gdata_Extension
+{
+
+ protected $_rootNamespace = 'dc';
+ protected $_rootElement = 'publisher';
+
+ /**
+ * Constructor for Zend_Gdata_DublinCore_Extension_Publisher which
+ * Entity responsible for making the resource available
+ *
+ * @param DOMElement $element (optional) DOMElement from which this
+ * object should be constructed.
+ */
+ public function __construct($value = null)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_DublinCore::$namespaces);
+ parent::__construct();
+ $this->_text = $value;
+ }
+
+}
diff --git a/zend/library/Zend/Gdata/DublinCore/Extension/Rights.php b/zend/library/Zend/Gdata/DublinCore/Extension/Rights.php
new file mode 100644
index 0000000..2a5789a
--- /dev/null
+++ b/zend/library/Zend/Gdata/DublinCore/Extension/Rights.php
@@ -0,0 +1,58 @@
+<?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 DublinCore
+ * @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: Rights.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * Information about rights held in and over the resource
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage DublinCore
+ * @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_DublinCore_Extension_Rights extends Zend_Gdata_Extension
+{
+
+ protected $_rootNamespace = 'dc';
+ protected $_rootElement = 'rights';
+
+ /**
+ * Constructor for Zend_Gdata_DublinCore_Extension_Rights which
+ * Information about rights held in and over the resource
+ *
+ * @param DOMElement $element (optional) DOMElement from which this
+ * object should be constructed.
+ */
+ public function __construct($value = null)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_DublinCore::$namespaces);
+ parent::__construct();
+ $this->_text = $value;
+ }
+
+}
diff --git a/zend/library/Zend/Gdata/DublinCore/Extension/Subject.php b/zend/library/Zend/Gdata/DublinCore/Extension/Subject.php
new file mode 100644
index 0000000..e1ab11e
--- /dev/null
+++ b/zend/library/Zend/Gdata/DublinCore/Extension/Subject.php
@@ -0,0 +1,58 @@
+<?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 DublinCore
+ * @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: Subject.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * Topic of the resource
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage DublinCore
+ * @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_DublinCore_Extension_Subject extends Zend_Gdata_Extension
+{
+
+ protected $_rootNamespace = 'dc';
+ protected $_rootElement = 'subject';
+
+ /**
+ * Constructor for Zend_Gdata_DublinCore_Extension_Subject which
+ * Topic of the resource
+ *
+ * @param DOMElement $element (optional) DOMElement from which this
+ * object should be constructed.
+ */
+ public function __construct($value = null)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_DublinCore::$namespaces);
+ parent::__construct();
+ $this->_text = $value;
+ }
+
+}
diff --git a/zend/library/Zend/Gdata/DublinCore/Extension/Title.php b/zend/library/Zend/Gdata/DublinCore/Extension/Title.php
new file mode 100644
index 0000000..acdad7c
--- /dev/null
+++ b/zend/library/Zend/Gdata/DublinCore/Extension/Title.php
@@ -0,0 +1,58 @@
+<?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 DublinCore
+ * @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: Title.php 24593 2012-01-05 20:35:02Z matthew $
+ */
+
+/**
+ * @see Zend_Gdata_Extension
+ */
+require_once 'Zend/Gdata/Extension.php';
+
+/**
+ * Name given to the resource
+ *
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage DublinCore
+ * @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_DublinCore_Extension_Title extends Zend_Gdata_Extension
+{
+
+ protected $_rootNamespace = 'dc';
+ protected $_rootElement = 'title';
+
+ /**
+ * Constructor for Zend_Gdata_DublinCore_Extension_Title which
+ * Name given to the resource
+ *
+ * @param DOMElement $element (optional) DOMElement from which this
+ * object should be constructed.
+ */
+ public function __construct($value = null)
+ {
+ $this->registerAllNamespaces(Zend_Gdata_DublinCore::$namespaces);
+ parent::__construct();
+ $this->_text = $value;
+ }
+
+}