Changeset 1521277
- Timestamp:
- 10/24/2016 05:42:42 PM (9 years ago)
- Location:
- dynamic-audio-player-basic/trunk
- Files:
-
- 2 edited
-
dynamicplayer.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
dynamic-audio-player-basic/trunk/dynamicplayer.php
r1486517 r1521277 4 4 Plugin URI: http://dynamicaudioplayer.com 5 5 Description: This plugin allows you to add an audio player widget with a dynamic playlist and shortcodes for single buttons 6 Version: 3.1. 06 Version: 3.1.1 7 7 Author: Manolo Salsas Durán 8 8 Author URI: http://msalsas.com/ … … 417 417 class Dynamic_Player_Widget extends WP_Widget { 418 418 419 function Dynamic_Player_Widget() {419 function __construct() { 420 420 $widget_ops = array( 'classname' => 'dyn-description', 421 421 'description' => __( 'Dynamic Audio Player widget is automatically added. Just type your options. Do not try to add more widgets.', 'dynamicPlayer' ) … … 424 424 $control_ops = array( 'width' => 300, 'height' => 350, 'id_base' => 'dynamic-player-widget' ); 425 425 426 $this->WP_Widget( 'dynamic-player-widget', __( 'Dynamic Audio Player Widget', 'dynamicPlayer' ), $widget_ops, $control_ops );426 parent::__construct( 'dynamic-player-widget', __( 'Dynamic Audio Player Widget', 'dynamicPlayer' ), $widget_ops, $control_ops ); 427 427 } 428 428 -
dynamic-audio-player-basic/trunk/readme.txt
r1486517 r1521277 50 50 51 51 == Changelog == 52 53 = 3.1.1 = 54 Remove WP_Widget as deprecated constructor. 52 55 53 56 = 3.1.0 =
Note: See TracChangeset
for help on using the changeset viewer.