Changeset 862094
- Timestamp:
- 02/21/2014 04:27:54 AM (12 years ago)
- Location:
- easy-digital-downloads-discount-widget/trunk
- Files:
-
- 2 edited
-
edd-discount-widget.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easy-digital-downloads-discount-widget/trunk/edd-discount-widget.php
r862076 r862094 3 3 * Plugin Name: Easy Digital Downloads - Discount Widget 4 4 * Description: Allow third-party sites to display your current downloads through a simple widget! 5 * Version: 1.0. 15 * Version: 1.0.2 6 6 * Author: Daniel J Griffiths 7 7 * Author URI: http://www.ghost1227.com … … 28 28 $widget_ops = array( 'classname' => 'edd_discounts_widget', 'description' => __( 'Display current discounts from any EDD powered site!', 'edd-discounts-widget' ) ); 29 29 $control_ops = array( 'id_base' => 'edd_discounts_widget' ); 30 $this->WP_Widget( 'edd_discounts_widget', __( ' Discounts', 'edd-discounts-widget' ), $widget_ops, $control_ops );30 $this->WP_Widget( 'edd_discounts_widget', __( 'Easy Digital Downloads - Discounts', 'edd-discounts-widget' ), $widget_ops, $control_ops ); 31 31 } 32 32 … … 91 91 $defaults = array( 92 92 'title' => __( 'Discounts', 'edd-discounts-widget' ), 93 'max_discounts' => '5' 93 'site_url' => '', 94 'api_key' => '', 95 'api_token' => '', 96 'max_discounts' => '5', 97 'hide_exp' => 0 94 98 ); 95 99 -
easy-digital-downloads-discount-widget/trunk/readme.txt
r862076 r862094 5 5 Requires at least: 3.3 6 6 Tested up to: 3.5.1 7 Stable tag: 1.0. 17 Stable tag: 1.0.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 32 32 == Changelog == 33 33 34 = 1.0.2 = 35 * Fixed missing variable error 36 34 37 = 1.0.1 = 35 38 * Code cleanup
Note: See TracChangeset
for help on using the changeset viewer.