MC4WP_Form_Element::get_html_after_fields PHP Method

get_html_after_fields() protected method

Get HTML to be added _after_ the HTML of the form fields.
protected get_html_after_fields ( ) : string
return string
    protected function get_html_after_fields()
    {
        $html = '';
        $form = $this->form;
        /**
         * Filters the HTML after the form fields.
         *
         * @param string $html
         * @param MC4WP_Form $form
         * @ignore
         */
        $html = (string) apply_filters('mc4wp_form_after_fields', $html, $form);
        if ($this->get_response_position() === 'after') {
            $html = $this->get_response_html() . $html;
        }
        return $html;
    }