settings.php
56 lines
| 1 | <div class="wrap"> |
| 2 | <div id="disablecommentswrap" class="disablecommentswrap background__grey"> |
| 3 | <?php do_action('disable_comments_notice'); ?> |
| 4 | <div class="disable__comment_block"> |
| 5 | <div class="disable__comment__nav__wrap"> |
| 6 | <p class="plugin__version"><?php echo esc_html__('Version', 'disable-comments') . ' ' . esc_html(DC_VERSION); ?></p> |
| 7 | <ul class="disable__comment__nav" role="tablist"> |
| 8 | <li id="disableCommentsNav" class="disable__comment__nav__item" role="presentation"> |
| 9 | <a href="#disableComments" |
| 10 | class="disable__comment__nav__link active" |
| 11 | role="tab" |
| 12 | aria-selected="true" |
| 13 | aria-controls="disableComments" |
| 14 | tabindex="0"> |
| 15 | <?php echo esc_html(_x('Disable Comments', 'Tab Name', 'disable-comments')); ?> |
| 16 | </a> |
| 17 | </li> |
| 18 | <li id="deleteCommentsNav" class="disable__comment__nav__item" role="presentation"> |
| 19 | <a href="#deleteComments" |
| 20 | class="disable__comment__nav__link" |
| 21 | role="tab" |
| 22 | aria-selected="false" |
| 23 | aria-controls="deleteComments" |
| 24 | tabindex="0"> |
| 25 | <?php echo esc_html(_x('Delete Comments', 'Tab Name', 'disable-comments')); ?> |
| 26 | </a> |
| 27 | </li> |
| 28 | </ul> |
| 29 | </div> |
| 30 | <div class="dc-row"> |
| 31 | <div class="dc-col-lg-9"> |
| 32 | <div class="disable__comment__tab"> |
| 33 | <div id="disableComments" |
| 34 | class="disable__comment__tab__item show" |
| 35 | role="tabpanel" |
| 36 | aria-labelledby="disableCommentsNav" |
| 37 | > |
| 38 | <?php include DC_PLUGIN_VIEWS_PATH . 'partials/_disable.php'; ?> |
| 39 | </div> |
| 40 | <div id="deleteComments" |
| 41 | class="disable__comment__tab__item" |
| 42 | role="tabpanel" |
| 43 | aria-labelledby="deleteCommentsNav" |
| 44 | > |
| 45 | <?php include DC_PLUGIN_VIEWS_PATH . 'partials/_delete.php'; ?> |
| 46 | </div> |
| 47 | </div> |
| 48 | </div> |
| 49 | <div class="dc-col-lg-3"> |
| 50 | <?php include DC_PLUGIN_VIEWS_PATH . 'partials/_sidebar.php'; ?> |
| 51 | </div> |
| 52 | <div> |
| 53 | </div> |
| 54 | <?php include DC_PLUGIN_VIEWS_PATH . 'partials/_footer.php'; ?> |
| 55 | </div> |
| 56 | </div> |