You are here

public function Publisher::addUpdatedTopicUrls 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::addUpdatedTopicUrls()

Add an array of Topic URLs which have been updated

Parameters

array $urls:

Return value

Publisher

1 call to Publisher::addUpdatedTopicUrls()
Publisher::setOptions in vendor/zendframework/zend-feed/src/PubSubHubbub/Publisher.php
Process any injected configuration options

File

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

Class

Publisher

Namespace

Zend\Feed\PubSubHubbub

Code

public function addUpdatedTopicUrls(array $urls) {
  foreach ($urls as $url) {
    $this
      ->addUpdatedTopicUrl($url);
  }
  return $this;
}