public function ViewUI::get

Overrides \Drupal\Core\Config\Entity\ConfigEntityBase::get().

Overrides ComplexDataInterface::get

6 calls to ViewUI::get()
ViewUI::buildDisplaysReorderForm in drupal/core/modules/views/views_ui/lib/Drupal/views_ui/ViewUI.php
Form constructor callback to reorder displays on a view
ViewUI::buildIdentifier in drupal/core/modules/views/views_ui/lib/Drupal/views_ui/ViewUI.php
Build a form identifier that we can use to see if one form is the same as another. Since the arguments differ slightly we do a lot of spiffy concatenation here.
ViewUI::renderPreview in drupal/core/modules/views/views_ui/lib/Drupal/views_ui/ViewUI.php
ViewUI::standardCancel in drupal/core/modules/views/views_ui/lib/Drupal/views_ui/ViewUI.php
Submit handler for cancel button
ViewUI::submitBreakLock in drupal/core/modules/views/views_ui/lib/Drupal/views_ui/ViewUI.php
Submit handler to break_lock a view.

... See full list

File

drupal/core/modules/views/views_ui/lib/Drupal/views_ui/ViewUI.php, line 131
Definition of Drupal\views_ui\ViewUI.

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 isset($this->{$property_name}) ? $this->{$property_name} : NULL;
}