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);
        }
    }