You are here

public function Publisher::getHubUrls in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/zendframework/zend-feed/src/PubSubHubbub/Publisher.php \Zend\Feed\PubSubHubbub\Publisher::getHubUrls()

Return an array of unique Hub Server URLs currently available

Return value

array

2 calls to Publisher::getHubUrls()
Publisher::notifyAll in vendor/zendframework/zend-feed/src/PubSubHubbub/Publisher.php
Notifies all Hub Server URLs of changes
Publisher::removeHubUrl in vendor/zendframework/zend-feed/src/PubSubHubbub/Publisher.php
Remove a Hub Server URL

File

vendor/zendframework/zend-feed/src/PubSubHubbub/Publisher.php, line 147

Class

Publisher

Namespace

Zend\Feed\PubSubHubbub

Code

public function getHubUrls() {
  $this->hubUrls = array_unique($this->hubUrls);
  return $this->hubUrls;
}