# age-gate/3.7.3/src/Resources/views/admin/restriction.php

Age Gate, version 3.7.3. 47 lines.

- Page: https://pluginprobe.com/plugins/age-gate/3.7.3/code/src/Resources/views/admin/restriction.php
- Raw: https://pluginprobe.com/plugins/age-gate/3.7.3/raw/src/Resources/views/admin/restriction.php
- Modified: 2022-09-16T21:43:30+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/age-gate/3.7.3/code/src/Resources/views/admin/restriction.php#L10-L20`.

```php
<?php $this->layout('layouts/default'); ?>

<?php foreach ($fields ?? [] as $name => $section) : ?>
    <?php if ($section['title'] ?? false) : ?>
        <h3><?php echo esc_html($section['title']) ?></h3>
    <?php endif; ?>
    <?php if ($section['subtitle'] ?? false) : ?>
        <p><?php echo esc_html($section['subtitle']) ?></p>
    <?php endif; ?>
    <table class="form-table">
        <?php foreach ($section['fields'] ?? [] as $name => $field) : ?>
            <tr>
                <th><?php echo esc_html($field['label']) ?></th>
                <td>
                    <fieldset class="ag-fields ag-fields--<?php echo esc_attr($field['type']) ?>">

                    <?php
                        try {
                            $this->insert('partials/fields/' . $field['type'], ['name' => $name, 'field' => $field]);
                        } catch (Exception $e) {
                            $this->insert('partials/fields/input', ['name' => $name, 'field' => $field]);
                        }

                        if ($field['translate'] ?? false) {
                            foreach ($languages['available'] ?? [] as $code => $lang) {
                                $langName = $code . '.' . $name;

                                try {
                                    $this->insert('partials/fields/'.$field['type'], ['name' => $langName, 'field' => $field, 'lang' => $code]);
                                } catch (Exception $e) {
                                    $this->insert('partials/fields/input', ['name' => $langName, 'field' => $field, 'lang' => $code]);
                                }
                            }
                        }

                    ?>

                    </fieldset>

                    <?php echo esc_html($field['type']) ?>
                </td>
            </tr>
        <?php endforeach; ?>
    </table>
    <hr />
<?php endforeach; ?>

```
