PluginProbe
Age Gate / 3.7.3
Age Gate v3.7.3
3.7.3 trunk 1.0.0 1.0.1 1.1.0 1.2.0 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.4.0 1.4.1 1.4.10 1.4.11 1.4.12 1.4.13 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 All 113 releases
age-gate / src / Resources / views / public / partials / form / sections / selects.php

selects.php in Age Gate 3.7.3, at src/Resources/views/public/partials/form/sections/selects.php

18 lines 771 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php $this->layout('theme::partials/form/sections/fieldset'); ?>
2
3 <ol <?php echo $this->attr('age-gate-form-elements')?>><?php // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
4 <?php foreach ($fields as $key => $field) : ?>
5 <li <?php echo $this->attr('age-gate-form-section') ?>><?php // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
6 <?php
7 $d = array_merge(
8 [
9 'key' => $key
10 ],
11 $field
12 );
13 ?>
14 <?php echo $this->fetch('theme::partials/form/fields/select', $d) // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
15 </li>
16 <?php endforeach; ?>
17 </ol>
18