You are here

public function Tag::getName in Extensible BBCode 8.3

Same name and namespace in other branches
  1. 4.0.x src/Entity/Tag.php \Drupal\xbbcode\Entity\Tag::getName()

The default tag name.

Return value

string Default tag name.

Overrides TagInterface::getName

File

src/Entity/Tag.php, line 127

Class

Tag
Represents a custom XBBCode tag that can be altered by administrators.

Namespace

Drupal\xbbcode\Entity

Code

public function getName() : string {
  return $this->name ?? '';
}