fewbricks\bricks\demo_flexible_brick::get_brick_html PHP Метод

get_brick_html() защищенный Метод

protected get_brick_html ( ) : string
Результат 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