public function GTMSettings::get in GoogleTagManager 7.2
Returns a property.
Parameters
string $property: The property name.
Return value
string The property.
File
- includes/
entity/ settings.inc, line 49
Class
- GTMSettings
- Defines the module settings entity.
Code
public function get($property) {
return isset($this->{$property}) ? $this->{$property} : NULL;
}