PluginProbe
Redirection / 2.4.3
Redirection v2.4.3
5.10.0 5.9.0 5.8.1 5.8.0 3.7.2 3.7.3 4.0 4.0.1 4.1 4.1.1 4.2 4.2.1 4.2.2 4.2.3 4.3 4.3.1 4.3.2 4.3.3 4.4 4.4.1 4.4.2 4.5 4.5.1 4.6.2 4.7.1 All 130 releases
redirection / view / support.php

support.php in Redirection 2.4.3, at view/support.php

74 lines 4.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php if (!defined ('ABSPATH')) die ('No direct access allowed'); ?>
2 <div class="wrap supporter">
3 <?php screen_icon(); ?>
4
5 <h2><?php _e ('Redirection Support', 'redirection'); ?></h2>
6 <?php $this->render( 'submenu', array( 'options' => $options ) ); ?>
7
8 <p style="clear: both; padding-top: 20px">
9 <?php _e( 'Redirection is free to use - life is wonderful and lovely! However, it has required a great deal of time and effort to develop and if it has been useful you can help support this development by <strong>making a small donation</strong>.', 'redirection'); ?>
10 <?php _e( 'This will act as an incentive for me to carry on developing. You get some useful software and I get to carry on making it. Everybody wins.', 'redirection'); ?>
11 </p>
12
13 <p><?php _e( 'Please note that a donation is just a donation - it is not a payment for support. I am not a business, this is not a product, and I\'m afraid I cannot provide paid support' ); ?></p>
14
15 <p><?php _e( 'If you are using this plugin in a commercial setup, or feel that it\'s been particularly useful, then you may want to consider a <strong>commercial donation</strong>.', 'redirection' )?>
16
17 <ul class="donations">
18 <li>
19 <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
20 <input type="hidden" name="cmd" value="_xclick">
21 <input type="hidden" name="business" value="admin@urbangiraffe.com">
22 <input type="hidden" name="item_name" value="Redirection - Individual">
23 <input type="hidden" name="amount" value="16.00">
24 <input type="hidden" name="buyer_credit_promo_code" value="">
25 <input type="hidden" name="buyer_credit_product_category" value="">
26 <input type="hidden" name="buyer_credit_shipping_method" value="">
27 <input type="hidden" name="buyer_credit_user_address_change" value="">
28 <input type="hidden" name="no_shipping" value="1">
29 <input type="hidden" name="return" value="http://urbangiraffe.com/plugins/redirection/">
30 <input type="hidden" name="no_note" value="1">
31 <input type="hidden" name="currency_code" value="USD">
32 <input type="hidden" name="tax" value="0">
33 <input type="hidden" name="lc" value="US">
34 <input type="hidden" name="bn" value="PP-DonationsBF">
35 <input type="image" style="border: none" src="<?php echo plugins_url( '/images/donate.gif', REDIRECTION_FILE ); ?>" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"/>
36 </form>
37
38 <p><strong>$16</strong><br/><?php _e( 'Individual<br/>Donation', 'redirection' ); ?></p>
39 </li>
40 <li>
41 <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
42 <input type="hidden" name="cmd" value="_xclick">
43 <input type="hidden" name="business" value="admin@urbangiraffe.com">
44 <input type="hidden" name="item_name" value="Redirection - Commercial">
45 <input type="hidden" name="buyer_credit_promo_code" value="">
46 <input type="hidden" name="buyer_credit_product_category" value="">
47 <input type="hidden" name="buyer_credit_shipping_method" value="">
48 <input type="hidden" name="buyer_credit_user_address_change" value="">
49 <input type="hidden" name="no_shipping" value="1">
50 <input type="hidden" name="return" value="http://urbangiraffe.com/plugins/redirection/">
51 <input type="hidden" name="no_note" value="1">
52 <input type="hidden" name="currency_code" value="USD">
53 <input type="hidden" name="tax" value="0">
54 <input type="hidden" name="lc" value="US">
55 <input type="hidden" name="bn" value="PP-DonationsBF">
56 <input type="image" style="border: none" src="<?php echo plugins_url( '/images/donate.gif', REDIRECTION_FILE ); ?>" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"/>
57 </form>
58 <p><strong>$$$</strong><br/><?php _e( 'Commercial<br/>Donation', 'redirection' ); ?></p>
59 </li>
60 </ul>
61
62 <h3 style="clear: both"><?php _e( 'Translations', 'redirection' )?></h3>
63
64 <p><?php _e( 'If you\'re multi-lingual then you may want to consider donating a translation:', 'redirection' )?>
65
66 <ul class="translators">
67 <?php foreach( $this->locales() AS $language ) : ?>
68 <li><?php echo esc_html( $language ); ?></li>
69 <?php endforeach; ?>
70 </ul>
71
72 <p><?php _e( 'Full details of producing a translation can be found in this <a href="http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/">guide to translating WordPress plugins</a>.', 'redirection' )?>
73 </div>
74