Entry.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?php
  2. /**
  3. * Zend Framework
  4. *
  5. * LICENSE
  6. *
  7. * This source file is subject to the new BSD license that is bundled
  8. * with this package in the file LICENSE.txt.
  9. * It is also available through the world-wide-web at this URL:
  10. * http://framework.zend.com/license/new-bsd
  11. * If you did not receive a copy of the license and are unable to
  12. * obtain it through the world-wide-web, please send an email
  13. * to license@zend.com so we can send you a copy immediately.
  14. *
  15. * @category Zend
  16. * @package Zend_Feed_Reader
  17. * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
  18. * @license http://framework.zend.com/license/new-bsd New BSD License
  19. * @version $Id$
  20. */
  21. /**
  22. * @see Zend_Feed_Reader
  23. */
  24. require_once 'Zend/Feed/Reader.php';
  25. /**
  26. * @see Zend_Feed_Reader_Entry_EntryAbstract
  27. */
  28. require_once 'Zend/Feed/Reader/Extension/EntryAbstract.php';
  29. /**
  30. * @category Zend
  31. * @package Zend_Feed_Reader
  32. * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
  33. * @license http://framework.zend.com/license/new-bsd New BSD License
  34. */
  35. class Zend_Feed_Reader_Extension_Content_Entry
  36. extends Zend_Feed_Reader_Extension_EntryAbstract
  37. {
  38. public function getContent()
  39. {
  40. if ($this->getType() !== Zend_Feed_Reader::TYPE_RSS_10
  41. && $this->getType() !== Zend_Feed_Reader::TYPE_RSS_090
  42. ) {
  43. $content = $this->_xpath->evaluate('string('.$this->getXpathPrefix().'/content:encoded)');
  44. } else {
  45. $content = $this->_xpath->evaluate('string('.$this->getXpathPrefix().'/content:encoded)');
  46. }
  47. return $content;
  48. }
  49. /**
  50. * Register RSS Content Module namespace
  51. */
  52. protected function _registerNamespaces()
  53. {
  54. $this->_xpath->registerNamespace('content', 'http://purl.org/rss/1.0/modules/content/');
  55. }
  56. }