public function ViewUI::get in Drupal 8
Same name and namespace in other branches
- 9 core/modules/views_ui/src/ViewUI.php \Drupal\views_ui\ViewUI::get()
- 10 core/modules/views_ui/src/ViewUI.php \Drupal\views_ui\ViewUI::get()
Returns the value of a property.
Parameters
string $property_name: The name of the property that should be returned.
Return value
mixed The property if it exists, or NULL otherwise.
Overrides ConfigEntityInterface::get
File
- core/
modules/ views_ui/ src/ ViewUI.php, line 155
Class
- ViewUI
- Stores UI related temporary settings.
Namespace
Drupal\views_uiCode
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;
}