appendTagToUrl() public method

Extends current URL with given tag.
public appendTagToUrl ( array $tag, string $tagsParameter = 'tags' ) : string
$tag array will be included in the URL
$tagsParameter string GET parameter name
return string
Beispiel #1
0
 /**
  * Extends current URL with given tag.
  *
  * @param array $tag will be included in the URL.
  * @param string $tagsParameter GET parameter name.
  *
  * @return string
  */
 public function appendTagUrlFunction($tag, $tagsParameter = 'tags')
 {
     return $this->tagRequestHandler->appendTagToUrl($tag, $tagsParameter);
 }