| 1 |
<?php |
| 2 |
if (! defined('ABSPATH')) { |
| 3 |
exit; |
| 4 |
} |
| 5 |
?> |
| 6 |
<div id="pf_settings" class="wrap"> |
| 7 |
|
| 8 |
<h2><img src="<?php echo esc_url(PRINTFRIENDLY_BASEURL . '/assets/images/pf-icon.png'); ?>"><?php esc_html_e('Print Friendly & PDF Settings', 'printfriendly'); ?></h2> |
| 9 |
|
| 10 |
<form id="pf-options-form" action="options.php" method="post"> |
| 11 |
<?php wp_nonce_field('pf-options', 'pf-nonce'); ?> |
| 12 |
<?php settings_fields($this->option_name); ?> |
| 13 |
|
| 14 |
<?php include_once PRINTFRIENDLY_BASEPATH . '/views/tabs.php'; ?> |
| 15 |
|
| 16 |
<input type="hidden" name="tab" id="current-tab" value="<?php echo esc_attr(get_transient('pf-tab')); ?>"> |
| 17 |
|
| 18 |
<footer id="after-submit" class="pf-bu-footer"> |
| 19 |
<div class="pf-bu-content pf-bu-has-text-centered"> |
| 20 |
<p> |
| 21 |
<?php echo wp_kses_post(sprintf(/* translators: %s is a 5-star rating link to the plugin's WordPress.org reviews page. */ __('If you like <strong>PrintFriendly</strong> please leave us a %s rating. A huge thanks in advance!', 'printfriendly'), '<a href="https://wordpress.org/support/plugin/printfriendly/reviews?rate=5#new-post" target="_blank">★★★★★</a>')); ?> |
| 22 |
</p> |
| 23 |
<p><?php esc_html_e('Need professional options for your corporate, education, or agency developed website? Check out', 'printfriendly'); ?> <a href="https://www.printfriendly.com/button/pro?utm_source=wp&utm_medium=link&utm_campaign=wp-link" target="_blank">PrintFriendly Pro</a>.</p> |
| 24 |
<p> |
| 25 |
<?php esc_html_e('Need help or have suggestions?', 'printfriendly'); ?> <a href="mailto:support@printfriendly.com?subject=Support%20for%20PrintFriendly%20WordPress%20plugin">support@PrintFriendly.com</a> |
| 26 |
</p> |
| 27 |
</div> |
| 28 |
</footer> |
| 29 |
|
| 30 |
</form> |
| 31 |
</div> |
| 32 |
|