| 1 |
<div class="age-gate-toolbar"> |
| 2 |
<h2 class="age-gate-toolbar__title"><i class="age-gate-toolbar__icon dashicons dashicons-lock"></i> <?php echo esc_html(__('Age Gate', 'age-gate')) ?></h2> |
| 3 |
|
| 4 |
<ul class="age-gate-toolbar__tabs"> |
| 5 |
<?php foreach ($tabs ?? [] as $slug => $name) : ?> |
| 6 |
<li class="age-gate-toolbar__tab<?php echo ($slug === sanitize_text_field($page ?? false)) ? ' age-gate-toolbar__tab--active' : '' ?>"> |
| 7 |
<a href="<?php echo esc_url(add_query_arg(['page' => esc_attr($slug)], admin_url('admin.php'))) ?>" class="age-gate-toolbar__link"><?php echo esc_html($name) ?></a> |
| 8 |
</li> |
| 9 |
<?php endforeach; ?> |
| 10 |
</ul> |
| 11 |
|
| 12 |
<button class="age-gate-toolbar__button age-gate-toolbar__button--hidden">More</button> |
| 13 |
|
| 14 |
<ul class="age-gate-toolbar__extra age-gate-toolbar__extra--hidden"></ul> |
| 15 |
</div> |
| 16 |
|