Changeset 1331543
- Timestamp:
- 01/19/2016 07:27:34 PM (10 years ago)
- Location:
- proper-widgets
- Files:
-
- 22 edited
- 1 copied
-
tags/v1.0.2 (copied) (copied from proper-widgets/trunk)
-
tags/v1.0.2/proper-widgets.php (modified) (3 diffs)
-
tags/v1.0.2/readme.txt (modified) (2 diffs)
-
tags/v1.0.2/the-widgets/proper-article-widget.php (modified) (1 diff)
-
tags/v1.0.2/the-widgets/proper-authors-widget.php (modified) (1 diff)
-
tags/v1.0.2/the-widgets/proper-comments-widget.php (modified) (1 diff)
-
tags/v1.0.2/the-widgets/proper-embed-widget.php (modified) (1 diff)
-
tags/v1.0.2/the-widgets/proper-gnews-widget.php (modified) (1 diff)
-
tags/v1.0.2/the-widgets/proper-linked-image-widget.php (modified) (1 diff)
-
tags/v1.0.2/the-widgets/proper-links-widget.php (modified) (1 diff)
-
tags/v1.0.2/the-widgets/proper-posts-widget.php (modified) (1 diff)
-
tags/v1.0.2/the-widgets/proper-rss-widget.php (modified) (1 diff)
-
trunk/proper-widgets.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/the-widgets/proper-article-widget.php (modified) (1 diff)
-
trunk/the-widgets/proper-authors-widget.php (modified) (1 diff)
-
trunk/the-widgets/proper-comments-widget.php (modified) (1 diff)
-
trunk/the-widgets/proper-embed-widget.php (modified) (1 diff)
-
trunk/the-widgets/proper-gnews-widget.php (modified) (1 diff)
-
trunk/the-widgets/proper-linked-image-widget.php (modified) (1 diff)
-
trunk/the-widgets/proper-links-widget.php (modified) (1 diff)
-
trunk/the-widgets/proper-posts-widget.php (modified) (1 diff)
-
trunk/the-widgets/proper-rss-widget.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
proper-widgets/tags/v1.0.2/proper-widgets.php
r972684 r1331543 5 5 Plugin URI: http://theproperweb.com/product/proper-widgets/ 6 6 Description: More widgets than you can shake a stick at. 7 Version: 1.0. 17 Version: 1.0.2 8 8 Author: PROPER Web Development 9 9 Author URI: http://theproperweb.com … … 13 13 14 14 // Constants 15 define( 'PROPER_WIDGETS_VERSION', '1.0. 1' );15 define( 'PROPER_WIDGETS_VERSION', '1.0.2' ); 16 16 define( 'PROPER_WIDGETS_MINIMUM_WP_VERSION', '3.0' ); 17 17 define( 'PROPER_WIDGETS_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); … … 19 19 20 20 // Core files 21 21 22 require_once( PROPER_WIDGETS_PLUGIN_DIR . 'inc/plugin-settings.php' ); 23 22 24 if ( ! class_exists( 'PhpFormBuilder' ) ) { 23 25 require_once( PROPER_WIDGETS_PLUGIN_DIR . 'inc/PhpFormBuilder.php' ); -
proper-widgets/tags/v1.0.2/readme.txt
r972684 r1331543 4 4 Tags: widgets, posts widget, links widget, rss widget, google news widget, author widget, users widget 5 5 Requires at least: 3.0 6 Tested up to: 4. 07 Stable tag: 1.0. 16 Tested up to: 4.4.1 7 Stable tag: 1.0.2 8 8 9 9 Creates easy-to-use, helpful widgets … … 43 43 == Changelog == 44 44 45 = 1.0.2 = 46 * Fixed PHP notices for widget instantiation 47 45 48 = 1.0.1 = 46 49 * Fixed issue with Posts widget in PHP 5.2 -
proper-widgets/tags/v1.0.2/the-widgets/proper-article-widget.php
r969970 r1331543 11 11 function __construct() { 12 12 13 $widget_ops = array( 'classname' => $this->css_class ); 14 $this->WP_Widget( $this->css_class, __( 'PROPER Article', 'proper-widgets' ) , $widget_ops ); 13 parent::__construct( 14 $this->css_class, 15 __( 'PROPER Article', 'proper-widgets' ), 16 array( 17 'classname' => $this->css_class, 18 ) 19 ); 15 20 16 21 // Widget options -
proper-widgets/tags/v1.0.2/the-widgets/proper-authors-widget.php
r969970 r1331543 10 10 function __construct() { 11 11 12 $widget_ops = array( 'classname' => $this->css_class ); 13 $this->WP_Widget( $this->css_class, __( 'PROPER Authors', 'proper-widgets' ) , $widget_ops); 12 parent::__construct( 13 $this->css_class, 14 __( 'PROPER Authors', 'proper-widgets' ), 15 array( 16 'classname' => $this->css_class, 17 ) 18 ); 14 19 15 20 // Widget options -
proper-widgets/tags/v1.0.2/the-widgets/proper-comments-widget.php
r969970 r1331543 10 10 function __construct() { 11 11 12 $widget_ops = array( 'classname' => $this->css_class ); 13 $this->WP_Widget( $this->css_class, __( 'PROPER Comments', 'proper-widgets' ), $widget_ops ); 12 parent::__construct( 13 $this->css_class, 14 __( 'PROPER Comments', 'proper-widgets' ), 15 array( 16 'classname' => $this->css_class, 17 ) 18 ); 14 19 15 20 // Widget options -
proper-widgets/tags/v1.0.2/the-widgets/proper-embed-widget.php
r969970 r1331543 9 9 10 10 function __construct() { 11 12 $widget_ops = array( 'classname' => $this->css_class ); 13 $this->WP_Widget( $this->css_class, __( 'PROPER Embed', 'proper-widgets' ), $widget_ops); 11 12 parent::__construct( 13 $this->css_class, 14 __( 'PROPER Embed', 'proper-widgets' ), 15 array( 16 'classname' => $this->css_class, 17 ) 18 ); 14 19 15 20 // Widget options -
proper-widgets/tags/v1.0.2/the-widgets/proper-gnews-widget.php
r969970 r1331543 10 10 function __construct () { 11 11 12 $widget_ops = array( 'classname' => $this->css_class); 13 $this->WP_Widget( $this->css_class, __( 'PROPER Google News Lite', 'proper-widgets' ), $widget_ops); 12 parent::__construct( 13 $this->css_class, 14 __( 'PROPER Google News Lite', 'proper-widgets' ), 15 array( 16 'classname' => $this->css_class, 17 ) 18 ); 14 19 15 20 // Widget options -
proper-widgets/tags/v1.0.2/the-widgets/proper-linked-image-widget.php
r969970 r1331543 11 11 function __construct() { 12 12 13 $widget_ops = array( 'classname' => $this->css_class ); 14 $this->WP_Widget( $this->css_class, __( 'PROPER Linked Image', 'proper-widgets' ), $widget_ops); 13 parent::__construct( 14 $this->css_class, 15 __( 'PROPER Linked Image', 'proper-widgets' ), 16 array( 17 'classname' => $this->css_class, 18 ) 19 ); 15 20 16 21 $this->widget_fields = array( -
proper-widgets/tags/v1.0.2/the-widgets/proper-links-widget.php
r969970 r1331543 10 10 function __construct() { 11 11 12 $widget_ops = array( 'classname' => $this->css_class ); 13 $this->WP_Widget( $this->css_class, __( 'PROPER Links', 'proper-widgets' ), $widget_ops ); 12 parent::__construct( 13 $this->css_class, 14 __( 'PROPER Links', 'proper-widgets' ), 15 array( 16 'classname' => $this->css_class, 17 ) 18 ); 14 19 15 20 // Get link categories -
proper-widgets/tags/v1.0.2/the-widgets/proper-posts-widget.php
r972684 r1331543 10 10 function __construct() { 11 11 12 $widget_ops = array( 'classname' => $this->css_class ); 13 $this->WP_Widget( 'proper-posts-widget', __( 'PROPER Posts', 'proper-widgets' ), $widget_ops); 12 parent::__construct( 13 $this->css_class, 14 __( 'PROPER Posts', 'proper-widgets' ), 15 array( 16 'classname' => $this->css_class, 17 ) 18 ); 14 19 15 20 // Get post categories -
proper-widgets/tags/v1.0.2/the-widgets/proper-rss-widget.php
r969970 r1331543 10 10 function __construct() { 11 11 12 $widget_ops = array( 'classname' => $this->css_class ); 13 $this->WP_Widget( $this->css_class, __( 'PROPER RSS', 'proper-widgets' ), $widget_ops ); 12 parent::__construct( 13 $this->css_class, 14 __( 'PROPER RSS', 'proper-widgets' ), 15 array( 16 'classname' => $this->css_class, 17 ) 18 ); 14 19 15 20 // Widget options -
proper-widgets/trunk/proper-widgets.php
r972684 r1331543 5 5 Plugin URI: http://theproperweb.com/product/proper-widgets/ 6 6 Description: More widgets than you can shake a stick at. 7 Version: 1.0. 17 Version: 1.0.2 8 8 Author: PROPER Web Development 9 9 Author URI: http://theproperweb.com … … 13 13 14 14 // Constants 15 define( 'PROPER_WIDGETS_VERSION', '1.0. 1' );15 define( 'PROPER_WIDGETS_VERSION', '1.0.2' ); 16 16 define( 'PROPER_WIDGETS_MINIMUM_WP_VERSION', '3.0' ); 17 17 define( 'PROPER_WIDGETS_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); … … 19 19 20 20 // Core files 21 21 22 require_once( PROPER_WIDGETS_PLUGIN_DIR . 'inc/plugin-settings.php' ); 23 22 24 if ( ! class_exists( 'PhpFormBuilder' ) ) { 23 25 require_once( PROPER_WIDGETS_PLUGIN_DIR . 'inc/PhpFormBuilder.php' ); -
proper-widgets/trunk/readme.txt
r972684 r1331543 4 4 Tags: widgets, posts widget, links widget, rss widget, google news widget, author widget, users widget 5 5 Requires at least: 3.0 6 Tested up to: 4. 07 Stable tag: 1.0. 16 Tested up to: 4.4.1 7 Stable tag: 1.0.2 8 8 9 9 Creates easy-to-use, helpful widgets … … 43 43 == Changelog == 44 44 45 = 1.0.2 = 46 * Fixed PHP notices for widget instantiation 47 45 48 = 1.0.1 = 46 49 * Fixed issue with Posts widget in PHP 5.2 -
proper-widgets/trunk/the-widgets/proper-article-widget.php
r969970 r1331543 11 11 function __construct() { 12 12 13 $widget_ops = array( 'classname' => $this->css_class ); 14 $this->WP_Widget( $this->css_class, __( 'PROPER Article', 'proper-widgets' ) , $widget_ops ); 13 parent::__construct( 14 $this->css_class, 15 __( 'PROPER Article', 'proper-widgets' ), 16 array( 17 'classname' => $this->css_class, 18 ) 19 ); 15 20 16 21 // Widget options -
proper-widgets/trunk/the-widgets/proper-authors-widget.php
r969970 r1331543 10 10 function __construct() { 11 11 12 $widget_ops = array( 'classname' => $this->css_class ); 13 $this->WP_Widget( $this->css_class, __( 'PROPER Authors', 'proper-widgets' ) , $widget_ops); 12 parent::__construct( 13 $this->css_class, 14 __( 'PROPER Authors', 'proper-widgets' ), 15 array( 16 'classname' => $this->css_class, 17 ) 18 ); 14 19 15 20 // Widget options -
proper-widgets/trunk/the-widgets/proper-comments-widget.php
r969970 r1331543 10 10 function __construct() { 11 11 12 $widget_ops = array( 'classname' => $this->css_class ); 13 $this->WP_Widget( $this->css_class, __( 'PROPER Comments', 'proper-widgets' ), $widget_ops ); 12 parent::__construct( 13 $this->css_class, 14 __( 'PROPER Comments', 'proper-widgets' ), 15 array( 16 'classname' => $this->css_class, 17 ) 18 ); 14 19 15 20 // Widget options -
proper-widgets/trunk/the-widgets/proper-embed-widget.php
r969970 r1331543 9 9 10 10 function __construct() { 11 12 $widget_ops = array( 'classname' => $this->css_class ); 13 $this->WP_Widget( $this->css_class, __( 'PROPER Embed', 'proper-widgets' ), $widget_ops); 11 12 parent::__construct( 13 $this->css_class, 14 __( 'PROPER Embed', 'proper-widgets' ), 15 array( 16 'classname' => $this->css_class, 17 ) 18 ); 14 19 15 20 // Widget options -
proper-widgets/trunk/the-widgets/proper-gnews-widget.php
r969970 r1331543 10 10 function __construct () { 11 11 12 $widget_ops = array( 'classname' => $this->css_class); 13 $this->WP_Widget( $this->css_class, __( 'PROPER Google News Lite', 'proper-widgets' ), $widget_ops); 12 parent::__construct( 13 $this->css_class, 14 __( 'PROPER Google News Lite', 'proper-widgets' ), 15 array( 16 'classname' => $this->css_class, 17 ) 18 ); 14 19 15 20 // Widget options -
proper-widgets/trunk/the-widgets/proper-linked-image-widget.php
r969970 r1331543 11 11 function __construct() { 12 12 13 $widget_ops = array( 'classname' => $this->css_class ); 14 $this->WP_Widget( $this->css_class, __( 'PROPER Linked Image', 'proper-widgets' ), $widget_ops); 13 parent::__construct( 14 $this->css_class, 15 __( 'PROPER Linked Image', 'proper-widgets' ), 16 array( 17 'classname' => $this->css_class, 18 ) 19 ); 15 20 16 21 $this->widget_fields = array( -
proper-widgets/trunk/the-widgets/proper-links-widget.php
r969970 r1331543 10 10 function __construct() { 11 11 12 $widget_ops = array( 'classname' => $this->css_class ); 13 $this->WP_Widget( $this->css_class, __( 'PROPER Links', 'proper-widgets' ), $widget_ops ); 12 parent::__construct( 13 $this->css_class, 14 __( 'PROPER Links', 'proper-widgets' ), 15 array( 16 'classname' => $this->css_class, 17 ) 18 ); 14 19 15 20 // Get link categories -
proper-widgets/trunk/the-widgets/proper-posts-widget.php
r972684 r1331543 10 10 function __construct() { 11 11 12 $widget_ops = array( 'classname' => $this->css_class ); 13 $this->WP_Widget( 'proper-posts-widget', __( 'PROPER Posts', 'proper-widgets' ), $widget_ops); 12 parent::__construct( 13 $this->css_class, 14 __( 'PROPER Posts', 'proper-widgets' ), 15 array( 16 'classname' => $this->css_class, 17 ) 18 ); 14 19 15 20 // Get post categories -
proper-widgets/trunk/the-widgets/proper-rss-widget.php
r969970 r1331543 10 10 function __construct() { 11 11 12 $widget_ops = array( 'classname' => $this->css_class ); 13 $this->WP_Widget( $this->css_class, __( 'PROPER RSS', 'proper-widgets' ), $widget_ops ); 12 parent::__construct( 13 $this->css_class, 14 __( 'PROPER RSS', 'proper-widgets' ), 15 array( 16 'classname' => $this->css_class, 17 ) 18 ); 14 19 15 20 // Widget options
Note: See TracChangeset
for help on using the changeset viewer.