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 / admin / partials / global / admin-toolbar.php

admin-toolbar.php in Age Gate 3.7.3, at src/Resources/views/admin/partials/global/admin-toolbar.php

16 lines 856 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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