You are here

public function AudioFieldPluginBase::getPluginTitle in AudioField 8

Gets the title of the plugin instance.

Return value

string The title of the plugin instance.

2 calls to AudioFieldPluginBase::getPluginTitle()
AudioFieldPluginBase::checkVersion in src/AudioFieldPluginBase.php
Checks to see if this audio plugin version is up to date.
AudioFieldPluginBase::getPluginDefinition in src/AudioFieldPluginBase.php
Gets the definition of the plugin implementation.

File

src/AudioFieldPluginBase.php, line 115

Class

AudioFieldPluginBase
Base class for audiofield plugins. Includes global functions.

Namespace

Drupal\audiofield

Code

public function getPluginTitle() {
  return $this->pluginDefinition['title'];
}