Entry.php 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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-2014 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_Extension_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-2014 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_WellFormedWeb_Entry
  36. extends Zend_Feed_Reader_Extension_EntryAbstract
  37. {
  38. /**
  39. * Get the entry comment Uri
  40. *
  41. * @return string|null
  42. */
  43. public function getCommentFeedLink()
  44. {
  45. $name = 'commentRss';
  46. if (array_key_exists($name, $this->_data)) {
  47. return $this->_data[$name];
  48. }
  49. $data = $this->_xpath->evaluate('string(' . $this->getXpathPrefix() . '/wfw:' . $name . ')');
  50. if (!$data) {
  51. $data = null;
  52. }
  53. $this->_data[$name] = $data;
  54. return $data;
  55. }
  56. /**
  57. * Register Slash namespaces
  58. *
  59. * @return void
  60. */
  61. protected function _registerNamespaces()
  62. {
  63. $this->_xpath->registerNamespace('wfw', 'http://wellformedweb.org/CommentAPI/');
  64. }
  65. }