You are here

public function TagadelicCloudBase::getTags in Tagadelic 8.3

Return an array of Tagadelic Tags.

Return value

$this-tags.

Overrides TagadelicCloudInterface::getTags

File

src/TagadelicCloudBase.php, line 49

Class

TagadelicCloudBase
Defines a base TagadelicCloud implementation.

Namespace

Drupal\tagadelic

Code

public function getTags(array $options = array()) {
  $this
    ->resetTags();
  $this
    ->createTags($options);
  $this
    ->recalculate();
  return $this->tags;
}