aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/opendd.php
diff options
context:
space:
mode:
authoricewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-05-20 11:41:23 +0000
committericewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-05-20 11:41:23 +0000
commit3630cf462b13d6aafd7f62d46423dad5e92bbd9e (patch)
tree0110a088cc87370f092547f930a6f985fca04ba9 /engine/lib/opendd.php
parent9caa09ee888d7884e22cc46089e6e0fb6579732c (diff)
downloadelgg-3630cf462b13d6aafd7f62d46423dad5e92bbd9e.tar.gz
elgg-3630cf462b13d6aafd7f62d46423dad5e92bbd9e.tar.bz2
Marcus Povey <marcus@dushka.co.uk>
* reverted previous git-svn-id: https://code.elgg.org/elgg/trunk@658 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/opendd.php')
-rw-r--r--engine/lib/opendd.php47
1 files changed, 2 insertions, 45 deletions
diff --git a/engine/lib/opendd.php b/engine/lib/opendd.php
index 96c18bbea..60707f43f 100644
--- a/engine/lib/opendd.php
+++ b/engine/lib/opendd.php
@@ -6,7 +6,7 @@
* @subpackage Core
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @author Marcus Povey
- * @version 0.3
+ * @version 0.2
* @copyright Curverider Ltd 2008
* @link http://elgg.org/
*/
@@ -270,46 +270,6 @@
}
/**
- * A wrapper factory is used to construct the appropriate wrappers that permit ODD documents to be embedded
- * as a payload in other formats.
- */
- abstract class ODDWrapperFactory
- {
- abstract function getElementWrapper($element);
- }
-
- /**
- * Element wrapper superclass.
- */
- abstract class ODDWrapper
- {
- /**
- * Wrap an element and return the encoded string.
- */
- abstract function wrap($element);
- }
-
- /**
- * Document wrapper superclass
- */
- abstract class ODDDocumentWrapper extends ODDWrapper { }
-
- /**
- * Entity wrapper superclass
- */
- abstract class ODDEntityWrapper extends ODDWrapper { }
-
- /**
- * Metadata wrapper superclass
- */
- abstract class ODDMetaDataWrapper extends ODDWrapper { }
-
- /**
- * Relationship wrapper superclass.
- */
- abstract class ODDRelationshipWrapper extends ODDWrapper { }
-
- /**
* Attempt to construct an ODD object out of a XmlElement or sub-elements.
*
* @param XmlElement $element The element(s)
@@ -373,11 +333,8 @@
* @param ODDDocument $document The Document.
* @param ODDWrapperFactory $wrapper Optional wrapper permitting the export process to embed ODD in other document formats.
*/
- function ODD_Export(ODDDocument $document, ODDWrapperFactory $wrapper = null)
+ function ODD_Export(ODDDocument $document)
{
- if ($wrapper)
- $document->setWrapperFactory($wrapper);
-
return "$document";
}