You are here

public function MediaSourceInterface::getSourceFieldValue in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/media/src/MediaSourceInterface.php \Drupal\media\MediaSourceInterface::getSourceFieldValue()

Get the primary value stored in the source field.

Parameters

MediaInterface $media: A media item.

Return value

mixed The source value, or NULL if the media item's source field is empty.

Throws

\RuntimeException If the source field for the media source is not defined.

1 method overrides MediaSourceInterface::getSourceFieldValue()
MediaSourceBase::getSourceFieldValue in core/modules/media/src/MediaSourceBase.php
Get the primary value stored in the source field.

File

core/modules/media/src/MediaSourceInterface.php, line 193

Class

MediaSourceInterface
Defines the interface for media source plugins.

Namespace

Drupal\media

Code

public function getSourceFieldValue(MediaInterface $media);