You are here

public function BrightcovePlayer::setAdjusted in Brightcove Video Connect 8.2

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

Sets the Player as adjusted.

Parameters

bool|null $adjusted: TRUE or FALSE whether the player is adjusted or not, or NULL to unset the value.

Return value

\Drupal\brightcove\BrightcovePlayerInterface The called Brightcove Player.

Overrides BrightcovePlayerInterface::setAdjusted

File

src/Entity/BrightcovePlayer.php, line 57

Class

BrightcovePlayer
Defines the Brightcove Player.

Namespace

Drupal\brightcove\Entity

Code

public function setAdjusted($adjusted) {
  return $this
    ->set('adjusted', $adjusted);
}