You are here

public function BrightcovePlaylist::getTagsSearchCondition in Brightcove Video Connect 3.x

Same name and namespace in other branches
  1. 8.2 src/Entity/BrightcovePlaylist.php \Drupal\brightcove\Entity\BrightcovePlaylist::getTagsSearchCondition()
  2. 8 src/Entity/BrightcovePlaylist.php \Drupal\brightcove\Entity\BrightcovePlaylist::getTagsSearchCondition()

Returns the tags search condition for smart playlist.

Return value

string The condition of the tag search.

Overrides BrightcovePlaylistInterface::getTagsSearchCondition

1 call to BrightcovePlaylist::getTagsSearchCondition()
BrightcovePlaylist::save in src/Entity/BrightcovePlaylist.php

File

src/Entity/BrightcovePlaylist.php, line 201

Class

BrightcovePlaylist
Defines the Brightcove Playlist.

Namespace

Drupal\brightcove\Entity

Code

public function getTagsSearchCondition() {
  return $this
    ->get('tags_search_condition')->value;
}