You are here

public function BrightcovePlayer::isAdjusted in Brightcove Video Connect 8

Same name and namespace in other branches
  1. 8.2 src/Entity/BrightcovePlayer.php \Drupal\brightcove\Entity\BrightcovePlayer::isAdjusted()
  2. 3.x src/Entity/BrightcovePlayer.php \Drupal\brightcove\Entity\BrightcovePlayer::isAdjusted()

Returns whether the player is adjusted for the playlist or not.

Return value

bool|null TRUE or FALSE whether the player is adjusted or not, or NULL if not set.

Overrides BrightcovePlayerInterface::isAdjusted

File

src/Entity/BrightcovePlayer.php, line 50

Class

BrightcovePlayer
Defines the Brightcove Player.

Namespace

Drupal\brightcove\Entity

Code

public function isAdjusted() {
  return $this
    ->get('adjusted')->value;
}