fewbricks\bricks\demo_flexible_brick::get_brick_html PHP Method

get_brick_html() protected method

protected get_brick_html ( ) : string
return string
    protected function get_brick_html()
    {
        $html = '';
        while ($this->have_rows('modules')) {
            $this->the_row();
            /** @noinspection PhpUndefinedMethodInspection */
            $html .= acf_fields\flexible_content::get_sub_field_brick_instance()->get_html();
        }
        return $html;
    }
demo_flexible_brick