public function Configuration::getValue in Configuration Management 7.3
File
- src/
Configuration.php, line 235
Class
- Configuration
- A generic configuration of the site.
Namespace
ConfigurationCode
public function getValue($property) {
if (!isset($this->property_accessor)) {
$this->property_accessor = PropertyAccess::createPropertyAccessor();
}
return $this->property_accessor
->getValue($this->data, $property);
}