You are here

public function MetaNameBase::multiple in Metatag 8

Whether or not this meta tag supports multiple values.

Return value

bool Whether or not this meta tag supports multiple values.

2 calls to MetaNameBase::multiple()
MetaNameBase::output in src/Plugin/metatag/Tag/MetaNameBase.php
Generate the HTML tag output for a meta tag.
MetaNameBase::parseImageUrl in src/Plugin/metatag/Tag/MetaNameBase.php
Extract any image URLs that might be found in a meta tag.

File

src/Plugin/metatag/Tag/MetaNameBase.php, line 220

Class

MetaNameBase
Each meta tag will extend this base.

Namespace

Drupal\metatag\Plugin\metatag\Tag

Code

public function multiple() {
  return $this->multiple;
}