Plugin Directory

Changeset 1223138


Ignore:
Timestamp:
08/17/2015 11:56:30 PM (11 years ago)
Author:
mahodder
Message:

1.0.3

Location:
themedy-widgets/trunk/includes/widgets
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • themedy-widgets/trunk/includes/widgets/widget-ad120x240.php

    r1121365 r1223138  
    2727    /* ---------------------------- */
    2828   
    29     function Themedy_Ad120x240_Widget() {
     29    function __construct() {
    3030   
    3131        /* Widget settings */
     
    3636
    3737        /* Create the widget */
    38         $this->WP_Widget( 'themedy_ad120x240_widget', __('Themedy - 120x240 Ad', 'themedy'), $widget_ops );
     38        parent::__construct( 'themedy_ad120x240_widget', __('Themedy - 120x240 Ad', 'themedy'), $widget_ops );
    3939    }
    4040
  • themedy-widgets/trunk/includes/widgets/widget-ad120x60.php

    r1121365 r1223138  
    2727    /* ---------------------------- */
    2828   
    29     function Themedy_Ad120x60_Widget() {
     29    function __construct() {
    3030   
    3131        /* Widget settings */
     
    3636
    3737        /* Create the widget */
    38         $this->WP_Widget( 'themedy_ad120x60_widget', __('Themedy - 120x60 Ad', 'themedy'), $widget_ops );
     38        parent::__construct( 'themedy_ad120x60_widget', __('Themedy - 120x60 Ad', 'themedy'), $widget_ops );
    3939    }
    4040
  • themedy-widgets/trunk/includes/widgets/widget-ad125.php

    r1121365 r1223138  
    2727    /* ---------------------------- */
    2828   
    29     function Themedy_Ad_Widget() {
     29    function __construct() {
    3030   
    3131        /* Widget settings */
     
    3636
    3737        /* Create the widget */
    38         $this->WP_Widget( 'themedy_ad_widget', __('Themedy - 125x125 Ads', 'themedy'), $widget_ops );
     38        parent::__construct( 'themedy_ad_widget', __('Themedy - 125x125 Ads', 'themedy'), $widget_ops );
    3939    }
    4040
  • themedy-widgets/trunk/includes/widgets/widget-ad300x250.php

    r1121365 r1223138  
    2727    /* ---------------------------- */
    2828   
    29     function Themedy_Ad300_Widget() {
     29    function __construct() {
    3030   
    3131        /* Widget settings */
     
    3636
    3737        /* Create the widget */
    38         $this->WP_Widget( 'themedy_ad300_widget', __('Themedy - 300x250 Ad', 'themedy'), $widget_ops );
     38        parent::__construct( 'themedy_ad300_widget', __('Themedy - 300x250 Ad', 'themedy'), $widget_ops );
    3939    }
    4040
  • themedy-widgets/trunk/includes/widgets/widget-ad300x600.php

    r1121365 r1223138  
    2727    /* ---------------------------- */
    2828   
    29     function Themedy_Ad300x600_Widget() {
     29    function __construct() {
    3030   
    3131        /* Widget settings */
     
    3636
    3737        /* Create the widget */
    38         $this->WP_Widget( 'themedy_ad300x600_widget', __('Themedy - 300x600 Ad', 'themedy'), $widget_ops );
     38        parent::__construct( 'themedy_ad300x600_widget', __('Themedy - 300x600 Ad', 'themedy'), $widget_ops );
    3939    }
    4040
  • themedy-widgets/trunk/includes/widgets/widget-ad468x60.php

    r1204994 r1223138  
    2727    /* ---------------------------- */
    2828   
    29     function Themedy_Ad468_Widget() {
     29    function __construct() {
    3030   
    3131        /* Widget settings */
     
    3636
    3737        /* Create the widget */
    38         $this->WP_Widget( 'themedy_ad468_widget', __('Themedy - 468x60 Ad', 'themedy'), $widget_ops );
     38        parent::__construct( 'themedy_ad468_widget', __('Themedy - 468x60 Ad', 'themedy'), $widget_ops );
    3939    }
    4040
  • themedy-widgets/trunk/includes/widgets/widget-ad620x100.php

    r1204994 r1223138  
    2727    /* ---------------------------- */
    2828   
    29     function themedy_ad620_widget() {
     29    function __construct() {
    3030   
    3131        /* Widget settings */
     
    3636
    3737        /* Create the widget */
    38         $this->WP_Widget( 'themedy_ad620_widget', __('Themedy - 620x100 Ad', 'themedy'), $widget_ops );
     38        parent::__construct( 'themedy_ad620_widget', __('Themedy - 620x100 Ad', 'themedy'), $widget_ops );
    3939    }
    4040
  • themedy-widgets/trunk/includes/widgets/widget-flickr.php

    r1121365 r1223138  
    2727    /* ---------------------------- */
    2828   
    29     function Themedy_FLICKR_Widget() {
     29    function __construct() {
    3030   
    3131        /* Widget settings. */
     
    3333
    3434        /* Create the widget. */
    35         $this->WP_Widget( 'themedy_flickr_widget', __('Themedy - Flickr Photos', 'themedy'), $widget_ops );
     35        parent::__construct( 'themedy_flickr_widget', __('Themedy - Flickr Photos', 'themedy'), $widget_ops );
    3636    }
    3737
  • themedy-widgets/trunk/includes/widgets/widget-tabbed.php

    r1204971 r1223138  
    5151    /* ---------------------------- */
    5252
    53     function Themedy_tab_Widget() {
     53    function __construct() {
    5454
    5555        /* Widget settings */
     
    5757
    5858        /* Create the widget */
    59         $this->WP_Widget( 'themedy_tab_widget', __('Themedy - Tabbed Widget', 'themedy'), $widget_ops );
     59        parent::__construct( 'themedy_tab_widget', __('Themedy - Tabbed Widget', 'themedy'), $widget_ops );
    6060    }
    6161
  • themedy-widgets/trunk/includes/widgets/widget-video.php

    r1121365 r1223138  
    2727    /* ---------------------------- */
    2828   
    29     function Themedy_Video_Widget() {
     29    function __construct() {
    3030   
    3131        /* Widget settings. */
     
    3636
    3737        /* Create the widget. */
    38         $this->WP_Widget( 'themedy_video_widget', __('Themedy - Video Widget', 'themedy'), $widget_ops, $control_ops );
     38        parent::__construct( 'themedy_video_widget', __('Themedy - Video Widget', 'themedy'), $widget_ops, $control_ops );
    3939    }
    4040
Note: See TracChangeset for help on using the changeset viewer.