| 1 |
|
| 2 |
<?php // TODO: APPLY JS TOGGLES ?> |
| 3 |
<?php if ($content->isRestricted()) : ?> |
| 4 |
<span data-ag-tooltip="<?php echo esc_html__('Restricted to', 'age-gate'); ?>: <?php echo esc_attr($content->getAge()); ?>" data-quick-checked=""> |
| 5 |
<i class="dashicons dashicons-lock"></i> |
| 6 |
</span> |
| 7 |
<span class="screen-reader-text"><?php echo esc_html__('Restricted to', 'age-gate'); ?>: <strong class="age-display"><?php echo esc_html($content->getAge()); ?></strong></span> |
| 8 |
<?php else: ?> |
| 9 |
<span data-ag-tooltip="<?php echo esc_html__('Unrestricted', 'age-gate'); ?>" data-quick-checked=""> |
| 10 |
<i class="dashicons dashicons-unlock"></i> |
| 11 |
</span> |
| 12 |
<span class="screen-reader-text"><?php echo esc_html__('Unrestricted', 'age-gate'); ?></span> |
| 13 |
<?php endif; ?> |
| 14 |
|