Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. ViewUI.php

function ViewUI::get

Overrides ConfigEntityInterface::get

File

core/modules/views_ui/src/ViewUI.php, line 162

Class

ViewUI
Stores UI related temporary settings.

Namespace

Drupal\views_ui

Code

public function get($property_name, $langcode = NULL) {
    if (property_exists($this->storage, $property_name)) {
        return $this->storage
            ->get($property_name, $langcode);
    }
    return $this->{$property_name} ?? NULL;
}
RSS feed
Powered by Drupal