| 1 |
<?php $this->layout('partials/fields/wrapper', ['field' => $field, 'lang' => $lang ?? false]) ?> |
| 2 |
|
| 3 |
<?php $this->start('input') ?> |
| 4 |
|
| 5 |
<?php echo wp_kses_post(wpautop(esc_html($field['message'] ?? ''))) ?> |
| 6 |
|
| 7 |
<?php if ($field['suboption'] ?? false) : ?> |
| 8 |
<p><?php echo esc_html(__('Your previous styles are below if anything is missing.', 'age-gate')) ?> <button class="button-link ag-remove-legacy-css" type="button" data-id="<?php echo esc_attr(wp_create_nonce('ag_clear_css')) ?>"><?php echo esc_html(__('Remove legacy styles', 'age-gate')) ?></button></p> |
| 9 |
<pre><code class="language-css"><?php echo esc_html(trim($field['suboption'])) ?></code></pre> |
| 10 |
|
| 11 |
<?php endif; ?> |
| 12 |
|
| 13 |
<?php $this->stop() ?> |
| 14 |
|