| 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 |
|