| Server IP : 208.122.213.31 / Your IP : 216.73.216.45 Web Server : Apache System : Linux msd6191.mjhst.com 4.18.0-553.137.1.el8_10.x86_64 #1 SMP Wed Jun 24 11:40:24 UTC 2026 x86_64 User : WHMCS_MIA_382 ( 1001) PHP Version : 7.4.33 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/self/cwd/wp-content/plugins/age-gate/src/Resources/views/admin/ |
Upload File : |
<?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 echo html_build_attributes($section['condition'] ?? []) // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>>
<?php foreach ($section['fields'] ?? [] as $name => $field) : ?>
<tr <?php echo html_build_attributes($field['condition'] ?? []) // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>>
<th>
<?php echo esc_html($field['label']) ?>
<?php if ($field['sublabel'] ?? false) : ?>
<sup>(<?php echo esc_html($field['sublabel']) ?>)</sup>
<?php endif; ?>
</th>
<td>
<fieldset class="ag-fields ag-fields--<?php esc_attr($field['type']) ?>">
<?php
try {
$this->insert('partials/fields/' . $field['type'], ['name' => $name, 'field' => $field]);
} catch (Exception $e) {
// dump($e->getMessage());
$this->insert('partials/fields/input', ['name' => $name, 'field' => $field]);
}
if ($field['translate'] ?? false) {
foreach ($languages['available'] ?? [] as $code => $lang) {
$langName = $code . '.' . $name;
if ($field['attributes']['required'] ?? false) {
unset($field['attributes']['required']);
}
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 if ($field['docs'] ?? false) : ?>
<a href="<?php echo esc_url($field['docs']['link'] ?? '#') ?>" class="<?php echo esc_attr($field['docs']['class'] ?? 'button') ?> ag-docs-link" target="_blank" rel="noopener noreferrer"><?php echo esc_html($field['docs']['label'] ?? __('Documentation', 'age-gate')) ?> <span class="dashicons dashicons-external"></span></a>
<?php endif; ?>
</td>
</tr>
<?php endforeach; ?>
</table>
<hr />
<?php endforeach; ?>
<?php $this->start('after') ?>
<?php echo $this->section('additional') // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
<?php $this->stop() ?>