Deprecated Method: Solved!
-
Hi!
To solve the message of deprecated / notice on wordpress versions “Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; AJAX_Calendar_Widget has a deprecated constructor”You need to change 2 lines in the plugin (ajax-calendar.php line 11) and put these:
function __construct() {
$widget_ops = array( ‘classname’ => ‘ajax_calendar_widget’, ‘description’ => __( ‘AJAX Powered Calendar’, ‘ajax-calendar’ ) );
$control_ops = array( ‘width’ => 300, ‘height’ => 300 );parent::__construct( ‘ajax-calendar’, __( ‘AJAX Calendar’, ‘ajax-calendar’ ), $widget_ops, $control_ops );
add_action( ‘template_redirect’, array( &$this, ‘template_redirect’ ) );
}
- The topic ‘Deprecated Method: Solved!’ is closed to new replies.