layouts
5 years ago
html-settings.php
5 years ago
index.html
5 years ago
irrp-settings.php
5 years ago
html-settings.php
22 lines
| 1 | <?php |
| 2 | if (!defined("ABSPATH")) { |
| 3 | exit(); |
| 4 | } |
| 5 | ?> |
| 6 | <div class="custom-container"> |
| 7 | <div class="page"> |
| 8 | <?php include_once "layouts/common/delete-confirmation-prompt.php"; ?> |
| 9 | <h1 class="page__heading">Welcome to Ultimate Redirect!</h1> |
| 10 | <div class="tabs-container"> |
| 11 | <div class="tabs"> |
| 12 | <button class="tabs__button tabs__button--active" data-tab="<?php echo esc_attr(IrrPRedirection::$TABS["specific-url-redirections"]); ?>">Specific URL Redirections</button> |
| 13 | <button class="tabs__button" data-tab="<?php echo esc_attr(IrrPRedirection::$TABS["redirection-rules"]); ?>">Redirection Rules</button> |
| 14 | <button class="tabs__button" data-tab="<?php echo esc_attr(IrrPRedirection::$TABS["automatic-redirects"]); ?>">Automatic Redirects</button> |
| 15 | <button class="tabs__button" data-tab="<?php echo esc_attr(IrrPRedirection::$TABS["change-urls"]); ?>">Change URLs</button> |
| 16 | </div> |
| 17 | </div> |
| 18 | <div class="page__block"> |
| 19 | <?php include_once "layouts/specific-url-redirections.php"; ?> |
| 20 | </div> |
| 21 | </div> |
| 22 | </div> |