summaryrefslogtreecommitdiff
path: root/classes/feeditem.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-05-01 17:04:57 +0400
committerAndrew Dolgov <[email protected]>2013-05-01 17:04:57 +0400
commitcd07592c29391ca374f78a75a10465f894d50042 (patch)
treec8bd2d30267ff5b1f6334417a304dddb5f0125ae /classes/feeditem.php
parent7fc041c6ef2241d0611afb60fb721568376cd723 (diff)
add basic tinyparser/atom
Diffstat (limited to 'classes/feeditem.php')
-rw-r--r--classes/feeditem.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/classes/feeditem.php b/classes/feeditem.php
new file mode 100644
index 000000000..cc39fcee7
--- /dev/null
+++ b/classes/feeditem.php
@@ -0,0 +1,15 @@
+<?php
+class FeedItem {
+ abstract function get_id();
+ abstract function get_date();
+ abstract function get_link();
+ abstract function get_title();
+ abstract function get_description();
+ abstract function get_content();
+ abstract function get_comments_url();
+ abstract function get_comments_count();
+ abstract function get_categories();
+ abstract function get_enclosures();
+ abstract function get_author();
+}
+?>