You are here

public function PatternContext::getProperty in UI Patterns 8

Get pattern context property.

Return value

mixed Property value.

File

src/Element/PatternContext.php, line 48

Class

PatternContext
Class PatternContext.

Namespace

Drupal\ui_patterns\Element

Code

public function getProperty($name) {
  return isset($this->properties[$name]) ? $this->properties[$name] : NULL;
}