summaryrefslogtreecommitdiffstats
path: root/opmlparser.php
diff options
context:
space:
mode:
authorAlessandro Cosentino <cosenal@gmail.com>2012-07-23 10:43:53 -0400
committerAlessandro Cosentino <cosenal@gmail.com>2012-07-23 10:43:53 -0400
commit27df8ca4628457e2fca13a64125152469dab33bb (patch)
treed93d9f6d2249fc7898bf201bfb28ebe7d443cbe3 /opmlparser.php
parent2580eb06003aa3827106c9a5eb78348c333dabc8 (diff)
dialog for opml importing
Diffstat (limited to 'opmlparser.php')
-rw-r--r--opmlparser.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/opmlparser.php b/opmlparser.php
new file mode 100644
index 000000000..ab0c8beb0
--- /dev/null
+++ b/opmlparser.php
@@ -0,0 +1,15 @@
+<?php
+
+class OPMLParser {
+
+ public $raw;
+ public $data;
+
+ public function __construct($raw) {
+ $this->raw = $raw;
+ $this->data = array();
+ }
+
+
+
+} \ No newline at end of file