public function Publisher::getUpdatedTopicUrls in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/zendframework/zend-feed/src/PubSubHubbub/Publisher.php \Zend\Feed\PubSubHubbub\Publisher::getUpdatedTopicUrls()
Return an array of unique updated topic URLs currently available
Return value
array
2 calls to Publisher::getUpdatedTopicUrls()
- Publisher::removeUpdatedTopicUrl in vendor/
zendframework/ zend-feed/ src/ PubSubHubbub/ Publisher.php - Remove an updated topic URL
- Publisher::_getHttpClient in vendor/
zendframework/ zend-feed/ src/ PubSubHubbub/ Publisher.php - Get a basic prepared HTTP client for use
File
- vendor/
zendframework/ zend-feed/ src/ PubSubHubbub/ Publisher.php, line 206
Class
Namespace
Zend\Feed\PubSubHubbubCode
public function getUpdatedTopicUrls() {
$this->updatedTopicUrls = array_unique($this->updatedTopicUrls);
return $this->updatedTopicUrls;
}