PluginProbe
Print, PDF & Email by PrintFriendly / 5.5.13
Print, PDF & Email by PrintFriendly v5.5.13
5.5.13 5.5.12 5.5.11 trunk 0.2 0.9 1.0 2.0 2.1.8 3.0 3.0.9 3.1.6 3.10.0 3.11.0 3.11.1 3.11.2 3.12.0 3.12.1 3.12.2 3.12.3 3.12.4 3.12.5 3.13.0 3.14.0 3.14.1 All 95 releases
printfriendly / views / settings.php

settings.php in Print, PDF & Email by PrintFriendly 5.5.13, at views/settings.php

32 lines 1.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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">&#9733;&#9733;&#9733;&#9733;&#9733;</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