# betterdocs/3.5.0/views/admin/setup-wizard/tab-content.php

BetterDocs – AI Documentation, Knowledge Base, MCP Server, Docs, Wikis, FAQ &amp; Chatbot, version 3.5.0. 15 lines.

- Page: https://pluginprobe.com/plugins/betterdocs/3.5.0/code/views/admin/setup-wizard/tab-content.php
- Raw: https://pluginprobe.com/plugins/betterdocs/3.5.0/raw/views/admin/setup-wizard/tab-content.php
- Modified: 2023-08-14T08:41:14+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/betterdocs/3.5.0/code/views/admin/setup-wizard/tab-content.php#L10-L20`.

```php
<div class="tab-content" id="<?php print( isset( $section['id'] ) ? $section['id'] : 'default-nav' );?>">
    <table class="form-table" role="presentation">
        <tbody>
            <?php
                if ( isset( $section['fields'] ) && is_array( $section['fields'] ) ) {
                    foreach ( $section['fields'] as $field ) {
                        $methodName = 'callback_' . $field['type'];
                        $self::$methodName( $field );
                    }
                }
            ?>
        </tbody>
    </table>
</div>

```
