access-denied-redirect.php
1 year ago
admin-toolbar.php
1 year ago
api-route.php
1 year ago
backend-menu.php
1 year ago
capability.php
1 year ago
content.php
1 year ago
identity.php
1 year ago
jwt.php
5 months ago
login-redirect.php
1 year ago
logout-redirect.php
1 year ago
metabox.php
1 year ago
not-found-redirect.php
1 year ago
policy.php
1 year ago
url.php
1 year ago
welcome.php
1 year ago
widget.php
1 year ago
content.php
80 lines
| 1 | <?php /** @version 7.0.0 **/ ?> |
| 2 | |
| 3 | <?php if (defined('AAM_KEY')) { ?> |
| 4 | <div class="aam-feature" id="post-content"> |
| 5 | <?php if (AAM::api()->config->get('core.settings.ui.tips')) { ?> |
| 6 | <?php echo apply_filters( |
| 7 | 'aam_content_service_tips_filter', |
| 8 | AAM_Backend_View::get_instance()->loadPartial('content-service-tips') |
| 9 | ); ?> |
| 10 | <?php } ?> |
| 11 | |
| 12 | <div class="aam-post-breadcrumb"></div> |
| 13 | |
| 14 | <div class="aam-container"> |
| 15 | <div id="content_list_container"> |
| 16 | <table id="post_type_list" class="table table-striped table-bordered hidden"> |
| 17 | <thead> |
| 18 | <tr> |
| 19 | <th>ID</th> |
| 20 | <th width="5%"> </th> |
| 21 | <th width="75%"><?php echo __('Title', 'advanced-access-manager'); ?></th> |
| 22 | <th><?php echo __('Actions', 'advanced-access-manager'); ?></th> |
| 23 | <th>Data</th> |
| 24 | </tr> |
| 25 | </thead> |
| 26 | <tbody></tbody> |
| 27 | </table> |
| 28 | <table id="taxonomy_list" class="table table-striped table-bordered hidden"> |
| 29 | <thead> |
| 30 | <tr> |
| 31 | <th>ID</th> |
| 32 | <th width="5%"> </th> |
| 33 | <th width="75%"><?php echo __('Title', 'advanced-access-manager'); ?></th> |
| 34 | <th><?php echo __('Actions', 'advanced-access-manager'); ?></th> |
| 35 | <th>Data</th> |
| 36 | </tr> |
| 37 | </thead> |
| 38 | <tbody></tbody> |
| 39 | </table> |
| 40 | <table id="post_list" class="table table-striped table-bordered hidden"> |
| 41 | <thead> |
| 42 | <tr> |
| 43 | <th>ID</th> |
| 44 | <th width="5%"> </th> |
| 45 | <th width="75%"><?php echo __('Title', 'advanced-access-manager'); ?></th> |
| 46 | <th><?php echo __('Actions', 'advanced-access-manager'); ?></th> |
| 47 | <th>Data</th> |
| 48 | </tr> |
| 49 | </thead> |
| 50 | <tbody></tbody> |
| 51 | </table> |
| 52 | <table id="term_list" class="table table-striped table-bordered hidden"> |
| 53 | <thead> |
| 54 | <tr> |
| 55 | <th>ID</th> |
| 56 | <th width="5%"> </th> |
| 57 | <th width="75%"><?php echo __('Title', 'advanced-access-manager'); ?></th> |
| 58 | <th><?php echo __('Actions', 'advanced-access-manager'); ?></th> |
| 59 | <th>Data</th> |
| 60 | </tr> |
| 61 | </thead> |
| 62 | <tbody></tbody> |
| 63 | </table> |
| 64 | </div> |
| 65 | |
| 66 | <div class="aam-slide-form aam-access-form" id="aam_content_access_form"> |
| 67 | <a href="#" class="btn btn-xs btn-primary post-back btn-right"> |
| 68 | ≪ <?php echo __('Go Back', 'advanced-access-manager'); ?> |
| 69 | </a> |
| 70 | <span class="aam-clear"></span> |
| 71 | |
| 72 | <div id="aam_access_form_container"></div> |
| 73 | |
| 74 | <a href="#" class="btn btn-xs btn-primary post-back"> |
| 75 | ≪ <?php echo __('Go Back', 'advanced-access-manager'); ?> |
| 76 | </a> |
| 77 | </div> |
| 78 | </div> |
| 79 | </div> |
| 80 | <?php } |