Shortcode_Button::__get PHP Метод

__get() публичный Метод

Magic getter for our object.
С версии: 0.1.0
public __get ( string $property ) : mixed
$property string Object property to retrieve
Результат mixed
    public function __get($property)
    {
        switch ($property) {
            case 'button_data':
            case 'args':
            case 'handle':
            case 'button_slug':
                return $this->{$property};
            default:
                throw new Exception('Invalid ' . __CLASS__ . ' property: ' . $property);
        }
    }