ViewFormBase::getDisplayLabel

public ViewFormBase::getDisplayLabel(ViewUI $view, $display_id, $check_changed = TRUE)

Placeholder function for overriding $display['display_title'].

@todo Remove this function once editing the display title is possible.

File

core/modules/views_ui/src/ViewFormBase.php, line 157

Class

ViewFormBase
Base form for Views forms.

Namespace

Drupal\views_ui

Code

public function getDisplayLabel(ViewUI $view, $display_id, $check_changed = TRUE) {
  $display = $view->get('display');
  $title = $display_id == 'default' ? $this->t('Master') : $display[$display_id]['display_title'];
  $title = views_ui_truncate($title, 25);

  if ($check_changed && !empty($view->changed_display[$display_id])) {
    $changed = '*';
    $title = $title . $changed;
  }

  return $title;
}
doc_Drupal
2016-10-29 09:54:35
Comments
Leave a Comment

Please login to continue.