fewbricks\bricks\demo_button::get_email_html PHP Method

get_email_html() private method

private get_email_html ( ) : string
return string
    private function get_email_html()
    {
        $html = '';
        $href = $this->get_field('email');
        if (!empty($href)) {
            $attributes = [];
            $attributes['href'] = 'mailto:' . $href;
            $attributes['class'] = 'btn-default';
            $html = $this->get_button_html($attributes);
        }
        return $html;
    }