You are here

public function Configuration::getValue in Configuration Management 7.3

File

src/Configuration.php, line 235

Class

Configuration
A generic configuration of the site.

Namespace

Configuration

Code

public function getValue($property) {
  if (!isset($this->property_accessor)) {
    $this->property_accessor = PropertyAccess::createPropertyAccessor();
  }
  return $this->property_accessor
    ->getValue($this->data, $property);
}