admin-toolbar-mode.php
1 year ago
api-route-mode.php
1 year ago
backend-menu-mode.php
1 year ago
content-access-form.php
1 year ago
content-service-tips.php
1 year ago
default-subject-tab.php
1 year ago
jwt-login-url.php
1 year ago
loading-content.php
1 year ago
login-form.php
1 year ago
multisite-sync-notification.php
1 year ago
post-list.php
1 year ago
visitor-subject-tab.php
1 year ago
api-route-mode.php
20 lines
| 1 | <?php |
| 2 | /** @version 7.0.0 **/ |
| 3 | ?> |
| 4 | |
| 5 | <?php if (defined('AAM_KEY')) { ?> |
| 6 | <div class="aam-feature-top-actions text-right"> |
| 7 | <table class="table table-bordered"> |
| 8 | <tbody> |
| 9 | <tr class="aam-info"> |
| 10 | <td class="text-left"> |
| 11 | <?php echo sprintf(AAM_Backend_View_Helper::preparePhrase('[Premium Feature:] Operate the RESTful API in a restricted access mode. When set to "Enabled," all current and future RESTful API endpoints are restricted by default unless explicitly permitted. %sLearn more%s.', 'strong'), '<a href="https://aamportal.com/article/security-wordpress-restful-api-endpoints?ref=plugin" target="_blank">', '</a>'); ?> |
| 12 | </td> |
| 13 | <td class="text-center"> |
| 14 | <input data-toggle="toggle" type="checkbox" data-on="<i class='icon-lock'></i> <?php echo __('Enabled', 'advanced-access-manager'); ?>" data-off="<?php echo __('Disabled', 'advanced-access-manager'); ?>" data-size="small" data-onstyle="danger" disabled /> |
| 15 | </td> |
| 16 | </tr> |
| 17 | </tbody> |
| 18 | </table> |
| 19 | </div> |
| 20 | <?php } |