__get() public method
Returns the value of a component property.
This method will check in the following order and act accordingly:
- a property defined by a getter: return the getter result
- a property of a behavior: return the behavior property value
Do not call this method directly as it is a PHP magic method that will be implicitly called when executing $value = $component->property;
.
public mixed __get ( $name ) | ||
---|---|---|
$name | string |
The property name |
return | mixed |
The property value or the value of a behavior's property |
throws | yii\base\UnknownPropertyException |
if the property is not defined |
throws | yii\base\InvalidCallException |
if the property is write-only. |
Please login to continue.