You are here

public function AudioFieldPluginBase::getPluginRemoteSource in AudioField 8

Gets the remote download source from the plugin's main library.

Return value

string The remote download source of the plugin instance.

1 call to AudioFieldPluginBase::getPluginRemoteSource()
AudioFieldPluginBase::getPluginDefinition in src/AudioFieldPluginBase.php
Gets the definition of the plugin implementation.

File

src/AudioFieldPluginBase.php, line 170

Class

AudioFieldPluginBase
Base class for audiofield plugins. Includes global functions.

Namespace

Drupal\audiofield

Code

public function getPluginRemoteSource() {

  // Get the main library for this plugin.
  $library = $this
    ->getPluginLibrary();
  return $library['remote'];
}