Changeset 1476364 – WordPress Plugin Repository (original) (raw)

Timestamp:

08/17/2016 06:09:15 AM (10 years ago)

mbj-webdevelopment

Message:

Tested up to: 4.6 Payment Buttons working fine.

Location:

payment-buttons/trunk

Files:

Legend:

Unmodified

Added

Removed

r1453189 r1476364
3 3 Tags: PayPal, PayPal Button, Buy Now Button, Add to Cart Button, Subscribe Button, charity, donations, paypal, paypal donation
4 4 Requires at least: 3.8
5 Tested up to: 4.5
5 Tested up to: 4.6
6 6 Stable tag: trunk
7 7 License: GPLv3
77 77
78 78 == Changelog ==
79 = 1.0.5 =
80 * Tested up to: 4.6 Payment Buttons working fine.
79 81 = 1.0.4 =
80 82 * Tested Payment Button no bug.
r1453189 r1476364
57 57
58 58 $this->plugin_name = 'paypal-payment-buttons';
59 $this->version = '1.0.4';
59 $this->version = '1.0.5';
60 60
61 61 $this->load_dependencies();
62 62 $this->set_locale();
63 63 $this->define_admin_hooks();
64 $prefix = is_network_admin() ? 'network_admin_' : '';
65 add_filter("{$prefix}plugin_action_links_" . PAYPAL_BUTTON_PLUGIN_BASENAME, array($this, 'paypal_button_plugin_action_links'), 10, 4);
64 66 }
65 67
179 181 }
180 182
183 public function paypal_button_plugin_action_links($actions, pluginfile,plugin_file, pluginfile,plugin_data, $context) {
184 $custom_actions = array(
185 'configure' => sprintf('%s', admin_url('options-general.php?page=paypal-payment-buttons-setting-panel'), __('Configure', 'donation-button')),
186 'docs' => sprintf('%s', 'https://www.premiumdev.com/product/payment-buttons/', __('Docs', 'donation-button')),
187 'support' => sprintf('%s', 'https://wordpress.org/support/plugin/payment-buttons', __('Support', 'donation-button')),
188 'review' => sprintf('%s', 'https://wordpress.org/support/view/plugin-reviews/payment-buttons', __('Write a Review', 'donation-button')),
189 );
190
191 return array_merge($custom_actions, $actions);
192 }
193
181 194 }
r1226979 r1476364
409 409 #. #-#-#-#-# plugin.pot (PayPal Payment Buttons 1.0.0) #-#-#-#-#
410 410 #. Author URI of the plugin/theme
411 msgid "http://localleadminer.com/"
411 msgid "https://www.premiumdev.com/"
412 412 msgstr ""
413 413
r1453189 r1476364
4 4 * @wordpress-plugin
5 5 * Plugin Name: PayPal Payment Buttons
6 * Plugin URI: http://localleadminer.com/
6 * Plugin URI: https://www.premiumdev.com/
7 7 * Description: PayPal Payment Buttons Developed by an Certified PayPal Developer, official PayPal Partner.
8 * Version: 1.0.4
8 * Version: 1.0.5
9 9 * Author: mbj-webdevelopment
10 * Author URI: http://localleadminer.com/
10 * Author URI: https://www.premiumdev.com/
11 11 * License: GPL-2.0+
12 12 * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
17 17 if (!defined('WPINC')) {
18 18 die;
19 }
20
21 if (!defined('PAYPAL_BUTTON_PLUGIN_BASENAME')) {
22 define('PAYPAL_BUTTON_PLUGIN_BASENAME', plugin_basename(__FILE__));
19 23 }
20 24
r1221545 r1476364
20 20 * https://github.com/tommcfarlin/WordPress-Plugin-Boilerplate/pull/123#issuecomment-28541913
21 21 *
22 * @link http://localleadminer.com/
22 * @link https://www.premiumdev.com/
23 23 * @since 1.0.0
24 24 *

Note: See TracChangeset for help on using the changeset viewer.