Changeset 1223138
- Timestamp:
- 08/17/2015 11:56:30 PM (11 years ago)
- Location:
- themedy-widgets/trunk/includes/widgets
- Files:
-
- 10 edited
-
widget-ad120x240.php (modified) (2 diffs)
-
widget-ad120x60.php (modified) (2 diffs)
-
widget-ad125.php (modified) (2 diffs)
-
widget-ad300x250.php (modified) (2 diffs)
-
widget-ad300x600.php (modified) (2 diffs)
-
widget-ad468x60.php (modified) (2 diffs)
-
widget-ad620x100.php (modified) (2 diffs)
-
widget-flickr.php (modified) (2 diffs)
-
widget-tabbed.php (modified) (2 diffs)
-
widget-video.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
themedy-widgets/trunk/includes/widgets/widget-ad120x240.php
r1121365 r1223138 27 27 /* ---------------------------- */ 28 28 29 function Themedy_Ad120x240_Widget() {29 function __construct() { 30 30 31 31 /* Widget settings */ … … 36 36 37 37 /* 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 ); 39 39 } 40 40 -
themedy-widgets/trunk/includes/widgets/widget-ad120x60.php
r1121365 r1223138 27 27 /* ---------------------------- */ 28 28 29 function Themedy_Ad120x60_Widget() {29 function __construct() { 30 30 31 31 /* Widget settings */ … … 36 36 37 37 /* 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 ); 39 39 } 40 40 -
themedy-widgets/trunk/includes/widgets/widget-ad125.php
r1121365 r1223138 27 27 /* ---------------------------- */ 28 28 29 function Themedy_Ad_Widget() {29 function __construct() { 30 30 31 31 /* Widget settings */ … … 36 36 37 37 /* 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 ); 39 39 } 40 40 -
themedy-widgets/trunk/includes/widgets/widget-ad300x250.php
r1121365 r1223138 27 27 /* ---------------------------- */ 28 28 29 function Themedy_Ad300_Widget() {29 function __construct() { 30 30 31 31 /* Widget settings */ … … 36 36 37 37 /* 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 ); 39 39 } 40 40 -
themedy-widgets/trunk/includes/widgets/widget-ad300x600.php
r1121365 r1223138 27 27 /* ---------------------------- */ 28 28 29 function Themedy_Ad300x600_Widget() {29 function __construct() { 30 30 31 31 /* Widget settings */ … … 36 36 37 37 /* 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 ); 39 39 } 40 40 -
themedy-widgets/trunk/includes/widgets/widget-ad468x60.php
r1204994 r1223138 27 27 /* ---------------------------- */ 28 28 29 function Themedy_Ad468_Widget() {29 function __construct() { 30 30 31 31 /* Widget settings */ … … 36 36 37 37 /* 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 ); 39 39 } 40 40 -
themedy-widgets/trunk/includes/widgets/widget-ad620x100.php
r1204994 r1223138 27 27 /* ---------------------------- */ 28 28 29 function themedy_ad620_widget() {29 function __construct() { 30 30 31 31 /* Widget settings */ … … 36 36 37 37 /* 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 ); 39 39 } 40 40 -
themedy-widgets/trunk/includes/widgets/widget-flickr.php
r1121365 r1223138 27 27 /* ---------------------------- */ 28 28 29 function Themedy_FLICKR_Widget() {29 function __construct() { 30 30 31 31 /* Widget settings. */ … … 33 33 34 34 /* 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 ); 36 36 } 37 37 -
themedy-widgets/trunk/includes/widgets/widget-tabbed.php
r1204971 r1223138 51 51 /* ---------------------------- */ 52 52 53 function Themedy_tab_Widget() {53 function __construct() { 54 54 55 55 /* Widget settings */ … … 57 57 58 58 /* 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 ); 60 60 } 61 61 -
themedy-widgets/trunk/includes/widgets/widget-video.php
r1121365 r1223138 27 27 /* ---------------------------- */ 28 28 29 function Themedy_Video_Widget() {29 function __construct() { 30 30 31 31 /* Widget settings. */ … … 36 36 37 37 /* 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 ); 39 39 } 40 40
Note: See TracChangeset
for help on using the changeset viewer.