PluginProbe ʕ •ᴥ•ʔ
Redirection / 1.0.3
Redirection v1.0.3
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 / layouts / common / header-settings-paragraph.php
redirect-redirection / includes / settings / layouts / common Last commit date
custom-body-data.php 4 years ago custom-dropdown.php 4 years ago custom-filter.php 4 years ago custom-pagination.php 4 years ago default-settings-modal.php 4 years ago delete-confirmation-prompt.php 4 years ago header-settings-paragraph.php 4 years ago index.html 4 years ago single-redirection.php 4 years ago
header-settings-paragraph.php
18 lines
1 <?php
2 if (!defined("ABSPATH")) {
3 exit();
4 }
5 ?>
6 <p class="header__paragraph ir-settings-paragraph">
7 <?php
8 $defaultSettingsSerialized = maybe_serialize($this->getDefaultSettings());
9 $userSettingsSerialized = maybe_serialize($this->data);
10 if (md5($defaultSettingsSerialized) === md5($userSettingsSerialized)) {
11 ?>
12 <span><?php _e( "…with the ", "redirect-redirection" ); ?></span>
13 <span role="button" tabindex="1" class="highlighted ir-default-settings-show"><?php _e( "default settings", "redirect-redirection" ); ?></span>
14 <?php } else { ?>
15 <span><?php _e( "…with your ", "redirect-redirection" ); ?></span>
16 <span role="button" tabindex="1" class="highlighted ir-default-settings-show"><?php _e( "tailored settings", "redirect-redirection" ); ?></span>
17 <?php } ?>
18 </p>