PluginProbe
FeedWordPress / 2017.1020
FeedWordPress v2017.1020
trunk 0.8 0.9 0.91 0.95 0.96 0.97 0.98 0.981 0.99 0.991 0.992 0.993 2008.1030 2008.1101 2008.1105 2008.1214 2009.0612 2009.0613 2009.0618 2009.0707 2009.1111 2009.1112 2010.0127 2010.0528 All 65 releases
feedwordpress / feedwordpie_item.class.php

feedwordpie_item.class.php in FeedWordPress 2017.1020, at feedwordpie_item.class.php

56 lines 2.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 class FeedWordPie_Item extends SimplePie_Item {
3
4 function get_id ($hash = false) {
5 return apply_filters('feedwordpie_item_get_id', parent::get_id($hash), $hash, $this);
6 }
7
8 function get_title () {
9 return apply_filters('feedwordpie_item_get_title', parent::get_title(), $this);
10 }
11
12 function get_description ($description_only = false) {
13 return apply_filters('feedwordpie_item_get_description', parent::get_description($description_only), $description_only, $this);
14 }
15
16 function get_content ($content_only = false) {
17 return apply_filters('feedwordpie_item_get_content', parent::get_content($content_only), $content_only, $this);
18 }
19
20 function get_categories () {
21 return apply_filters('feedwordpie_item_get_categories', parent::get_categories(), $this);
22 }
23
24 function get_authors () {
25 return apply_filters('feedwordpie_item_get_authors', parent::get_authors(), $this);
26 }
27 function get_contributors () {
28 return apply_filters('feedwordpie_item_get_contributors', parent::get_contributors(), $this);
29 }
30 function get_copyright () {
31 return apply_filters('feedwordpie_item_get_copyright', parent::get_copyright(), $this);
32 }
33 function get_date ($date_format = 'j F Y, g:i a') {
34 return apply_filters('feedwordpie_item_get_date', parent::get_date($date_format), $date_format, $this);
35 }
36 function get_local_date ($date_format = '%c') {
37 return apply_filters('feedwordpie_item_get_local_date', parent::get_local_date($date_format), $date_format, $this);
38 }
39 function get_links ($rel = 'alternate') {
40 return apply_filters('feedwordpie_item_get_links', parent::get_links($rel), $rel, $this);
41 }
42 function get_enclosures () {
43 return apply_filters('feedwordpie_item_get_enclosures', parent::get_enclosures(), $this);
44 }
45 function get_latitude () {
46 return apply_filters('feedwordpie_item_get_lattitude', parent::get_lattitude(), $this);
47 }
48 function get_longitude () {
49 return apply_filters('feedwordpie_item_get_longitude', parent::get_longtidue(), $this);
50 }
51 function get_source () {
52 return apply_filters('feedwordpie_item_get_source', parent::get_source(), $this);
53 }
54 } /* class FeedWordPie_Item */
55
56