dd_table
Github

    public function dd_table()
    {
        $data = [
            'first' => 'first text',
            'second' => 'second text',
            'third' => 'Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. 
				Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. 
				Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. 
				Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably havent heard of them accusamus labore sustainable VHS.',
            'fourth' => '44444',
        ];
        return _class('html')->dd_table($data, []);
    }
    public function dd_table($replace = [], $field_types = [], $extra = [])
    {
        $extra['id'] = $extra['id'] ?: __FUNCTION__ . '_' . ++$this->_ids[__FUNCTION__];
        if (DEBUG_MODE) {
            $ts = microtime(true);
        }
        $form = form($replace, [
            'legend' => $replace['title'],
            'no_form' => 1,
            'dd_mode' => 1,
            'dd_class' => 'span6 col-md-6',
        ]);
        foreach ((array) $replace as $name => $val) {
            $func = 'container';
            $_extra = [
                'desc' => $name,
                'value' => $val,
            ];
            $ft = $field_types[$name];
            if (isset($ft)) {
                if (is_array($ft)) {
                    if (isset($ft['func'])) {
                        $func = $ft['func'];
                    }
                    $_extra = (array) $ft + $_extra;
                } else {
                    $func = $ft;
                }
            }
            $_extra += (array) $extra;
            // Callback to decide if we need to show this field or not
            if (isset($_extra['display_func']) && is_callable($_extra['display_func'])) {
                $_display_allowed = $_extra['display_func']($val, $_extra);
                if ( ! $_display_allowed) {
                    continue;
                }
            }
            if ($func) {
                $form->$func($val, $_extra);
            }
        }
        $legend = $extra['legend'] ? '<legend>' . _prepare_html(t($extra['legend'])) . '</legend>' : '';
        $div_class = $extra['div_class'] ? $extra['div_class'] : 'span6 col-md-6';
        if (DEBUG_MODE) {
            debug('dd_table[]', [
                'fields' => $replace,
                'field_types' => $field_types,
                'extra' => $extra,
                'time' => round(microtime(true) - $ts, 5),
                'trace' => main()->trace_string(),
            ]);
        }
        return '<div class="row-fluid" id="' . $extra['id'] . '">' . $legend . '<div class="' . $div_class . '">' . $form . '</div></div>';
    }
Table-like markup, based on dl/dd/dt html elements.
Useful for displaying 2-column content like user profile.
first
first text
second
second text
third
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably havent heard of them accusamus labore sustainable VHS.
fourth
44444