Plugin Directory

Changeset 1331543


Ignore:
Timestamp:
01/19/2016 07:27:34 PM (10 years ago)
Author:
joshcanhelp
Message:

v1.0.2 - Ship

Location:
proper-widgets
Files:
22 edited
1 copied

Legend:

Unmodified
Added
Removed
  • proper-widgets/tags/v1.0.2/proper-widgets.php

    r972684 r1331543  
    55Plugin URI: http://theproperweb.com/product/proper-widgets/
    66Description: More widgets than you can shake a stick at.
    7 Version: 1.0.1
     7Version: 1.0.2
    88Author: PROPER Web Development
    99Author URI: http://theproperweb.com
     
    1313
    1414// Constants
    15 define( 'PROPER_WIDGETS_VERSION', '1.0.1' );
     15define( 'PROPER_WIDGETS_VERSION', '1.0.2' );
    1616define( 'PROPER_WIDGETS_MINIMUM_WP_VERSION', '3.0' );
    1717define( 'PROPER_WIDGETS_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
     
    1919
    2020// Core files
     21
    2122require_once( PROPER_WIDGETS_PLUGIN_DIR . 'inc/plugin-settings.php' );
     23
    2224if ( ! class_exists( 'PhpFormBuilder' ) ) {
    2325    require_once( PROPER_WIDGETS_PLUGIN_DIR . 'inc/PhpFormBuilder.php' );
  • proper-widgets/tags/v1.0.2/readme.txt

    r972684 r1331543  
    44Tags: widgets, posts widget, links widget, rss widget, google news widget, author widget, users widget
    55Requires at least: 3.0
    6 Tested up to: 4.0
    7 Stable tag: 1.0.1
     6Tested up to: 4.4.1
     7Stable tag: 1.0.2
    88
    99Creates easy-to-use, helpful widgets
     
    4343== Changelog ==
    4444
     45= 1.0.2 =
     46* Fixed PHP notices for widget instantiation
     47
    4548= 1.0.1 =
    4649* Fixed issue with Posts widget in PHP 5.2
  • proper-widgets/tags/v1.0.2/the-widgets/proper-article-widget.php

    r969970 r1331543  
    1111    function __construct() {
    1212
    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        );
    1520
    1621        // Widget options
  • proper-widgets/tags/v1.0.2/the-widgets/proper-authors-widget.php

    r969970 r1331543  
    1010    function __construct() {
    1111
    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        );
    1419
    1520        // Widget options
  • proper-widgets/tags/v1.0.2/the-widgets/proper-comments-widget.php

    r969970 r1331543  
    1010    function __construct() {
    1111
    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        );
    1419
    1520        // Widget options
  • proper-widgets/tags/v1.0.2/the-widgets/proper-embed-widget.php

    r969970 r1331543  
    99   
    1010    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        );
    1419
    1520        // Widget options
  • proper-widgets/tags/v1.0.2/the-widgets/proper-gnews-widget.php

    r969970 r1331543  
    1010    function __construct () {
    1111
    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        );
    1419
    1520        // Widget options
  • proper-widgets/tags/v1.0.2/the-widgets/proper-linked-image-widget.php

    r969970 r1331543  
    1111    function __construct() {
    1212       
    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        );
    1520       
    1621        $this->widget_fields = array(
  • proper-widgets/tags/v1.0.2/the-widgets/proper-links-widget.php

    r969970 r1331543  
    1010    function __construct() {
    1111
    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        );
    1419
    1520        // Get link categories
  • proper-widgets/tags/v1.0.2/the-widgets/proper-posts-widget.php

    r972684 r1331543  
    1010    function __construct() {
    1111       
    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        );
    1419       
    1520        // Get post categories
  • proper-widgets/tags/v1.0.2/the-widgets/proper-rss-widget.php

    r969970 r1331543  
    1010    function __construct() {
    1111
    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        );
    1419
    1520        // Widget options
  • proper-widgets/trunk/proper-widgets.php

    r972684 r1331543  
    55Plugin URI: http://theproperweb.com/product/proper-widgets/
    66Description: More widgets than you can shake a stick at.
    7 Version: 1.0.1
     7Version: 1.0.2
    88Author: PROPER Web Development
    99Author URI: http://theproperweb.com
     
    1313
    1414// Constants
    15 define( 'PROPER_WIDGETS_VERSION', '1.0.1' );
     15define( 'PROPER_WIDGETS_VERSION', '1.0.2' );
    1616define( 'PROPER_WIDGETS_MINIMUM_WP_VERSION', '3.0' );
    1717define( 'PROPER_WIDGETS_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
     
    1919
    2020// Core files
     21
    2122require_once( PROPER_WIDGETS_PLUGIN_DIR . 'inc/plugin-settings.php' );
     23
    2224if ( ! class_exists( 'PhpFormBuilder' ) ) {
    2325    require_once( PROPER_WIDGETS_PLUGIN_DIR . 'inc/PhpFormBuilder.php' );
  • proper-widgets/trunk/readme.txt

    r972684 r1331543  
    44Tags: widgets, posts widget, links widget, rss widget, google news widget, author widget, users widget
    55Requires at least: 3.0
    6 Tested up to: 4.0
    7 Stable tag: 1.0.1
     6Tested up to: 4.4.1
     7Stable tag: 1.0.2
    88
    99Creates easy-to-use, helpful widgets
     
    4343== Changelog ==
    4444
     45= 1.0.2 =
     46* Fixed PHP notices for widget instantiation
     47
    4548= 1.0.1 =
    4649* Fixed issue with Posts widget in PHP 5.2
  • proper-widgets/trunk/the-widgets/proper-article-widget.php

    r969970 r1331543  
    1111    function __construct() {
    1212
    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        );
    1520
    1621        // Widget options
  • proper-widgets/trunk/the-widgets/proper-authors-widget.php

    r969970 r1331543  
    1010    function __construct() {
    1111
    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        );
    1419
    1520        // Widget options
  • proper-widgets/trunk/the-widgets/proper-comments-widget.php

    r969970 r1331543  
    1010    function __construct() {
    1111
    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        );
    1419
    1520        // Widget options
  • proper-widgets/trunk/the-widgets/proper-embed-widget.php

    r969970 r1331543  
    99   
    1010    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        );
    1419
    1520        // Widget options
  • proper-widgets/trunk/the-widgets/proper-gnews-widget.php

    r969970 r1331543  
    1010    function __construct () {
    1111
    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        );
    1419
    1520        // Widget options
  • proper-widgets/trunk/the-widgets/proper-linked-image-widget.php

    r969970 r1331543  
    1111    function __construct() {
    1212       
    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        );
    1520       
    1621        $this->widget_fields = array(
  • proper-widgets/trunk/the-widgets/proper-links-widget.php

    r969970 r1331543  
    1010    function __construct() {
    1111
    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        );
    1419
    1520        // Get link categories
  • proper-widgets/trunk/the-widgets/proper-posts-widget.php

    r972684 r1331543  
    1010    function __construct() {
    1111       
    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        );
    1419       
    1520        // Get post categories
  • proper-widgets/trunk/the-widgets/proper-rss-widget.php

    r969970 r1331543  
    1010    function __construct() {
    1111
    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        );
    1419
    1520        // Widget options
Note: See TracChangeset for help on using the changeset viewer.