public function AudioFieldPluginBase::getPluginLibraryName in AudioField 8
Gets the name of the main library of the plugin instance.
Return value
string The name of the main library of the plugin instance.
10 calls to AudioFieldPluginBase::getPluginLibraryName()
- AudioFieldPluginBase::getPluginLibrary in src/
AudioFieldPluginBase.php - Gets the main library instance of this plugin.
- AudioFieldPluginBase::showInstallError in src/
AudioFieldPluginBase.php - Shows library installation errors for in-use libraries.
- AudioFieldPluginBase::validateFileAgainstPlayer in src/
AudioFieldPluginBase.php - Validate that a file entity will work with this player.
- AudioJsAudioPlayer::renderPlayer in src/
Plugin/ AudioPlayer/ AudioJsAudioPlayer.php - Renders the player.
- JPlayerAudioPlayer::renderPlayer in src/
Plugin/ AudioPlayer/ JPlayerAudioPlayer.php - Renders the player.
File
- src/
AudioFieldPluginBase.php, line 125
Class
- AudioFieldPluginBase
- Base class for audiofield plugins. Includes global functions.
Namespace
Drupal\audiofieldCode
public function getPluginLibraryName() {
return $this->pluginDefinition['libraryName'];
}