You are here

public function Tag::adsenseChannelIds in Doubleclick for Publishers (DFP) 8

Gets the Adsense channel ID(s) when AdSense ads are used for backfill.

Return value

string The Adsense channel ID(s) when AdSense ads are used for backfill. Multiple IDs are delimited by a + sign.

Overrides TagInterface::adsenseChannelIds

File

src/Entity/Tag.php, line 217
Contains \Drupal\dfp\Entity\Tag.

Class

Tag
Defines the DFP Ad tag configuration entity class.

Namespace

Drupal\dfp\Entity

Code

public function adsenseChannelIds() {
  return isset($this->adsense_backfill['channel_ids']) ? $this->adsense_backfill['channel_ids'] : NULL;
}