PluginProbe ʕ •ᴥ•ʔ
Redirection / 1.0.0
Redirection v1.0.0
trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0
redirect-redirection / includes / settings / html-settings.php
redirect-redirection / includes / settings Last commit date
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>