summaryrefslogtreecommitdiffstats
path: root/library/SSRS/Object/ItemDefinition.php
diff options
context:
space:
mode:
Diffstat (limited to 'library/SSRS/Object/ItemDefinition.php')
-rwxr-xr-xlibrary/SSRS/Object/ItemDefinition.php22
1 files changed, 22 insertions, 0 deletions
diff --git a/library/SSRS/Object/ItemDefinition.php b/library/SSRS/Object/ItemDefinition.php
new file mode 100755
index 0000000..f63d57e
--- /dev/null
+++ b/library/SSRS/Object/ItemDefinition.php
@@ -0,0 +1,22 @@
+<?php
+
+/**
+ * Description of ExecutionParameters
+ *
+ * @author andrew
+ */
+class SSRS_Object_ItemDefinition extends SSRS_Object_Abstract {
+
+ public function getXMLString() {
+ return $this->Definition;
+ }
+
+ public function getSimpleXML() {
+ return new SimpleXMLElement($this->getXMLString());
+ }
+
+ public function __toString() {
+ return $this->getXMLString();
+ }
+
+}