You are here

public function TagView::isSlugHidden in Doubleclick for Publishers (DFP) 8

Gets whether the slug should be hidden.

Return value

bool TRUE if the slug should be hidden, FALSE if not.

File

src/View/TagView.php, line 408
Contains \Drupal\dfp\View\TagView.

Class

TagView
A value object to combine a DFP tag with global settings for display.

Namespace

Drupal\dfp\View

Code

public function isSlugHidden() {
  return $this->globalSettings
    ->get('hide_slug');
}