You are here

public function Publisher::getUpdatedTopicUrls in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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

Publisher

Namespace

Zend\Feed\PubSubHubbub

Code

public function getUpdatedTopicUrls() {
  $this->updatedTopicUrls = array_unique($this->updatedTopicUrls);
  return $this->updatedTopicUrls;
}