_getData('total'); } /** * Get the entry data specified by name * * @param string $name * @param string $type * @return mixed|null */ protected function _getData($name) { if (array_key_exists($name, $this->_data)) { return $this->_data[$name]; } $data = $this->_xpath->evaluate('string(' . $this->getXpathPrefix() . '/thread10:' . $name . ')'); if (!$data) { $data = null; } $this->_data[$name] = $data; return $data; } /** * Register Atom Thread Extension 1.0 namespace * * @return void */ protected function _registerNamespaces() { $this->_xpath->registerNamespace('thread10', 'http://purl.org/syndication/thread/1.0'); } }