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> |