Changeset 3064939
- Timestamp:
- 04/04/2024 05:21:09 PM (23 months ago)
- Location:
- mstw-schedules-scoreboards/trunk
- Files:
-
- 4 edited
-
includes/mstw-ss-cdt-widget.php (modified) (3 diffs)
-
includes/mstw-ss-schedule-widget.php (modified) (2 diffs)
-
mstw-schedules-scoreboards.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mstw-schedules-scoreboards/trunk/includes/mstw-ss-cdt-widget.php
r1228870 r3064939 8 8 * 9 9 * MSTW Wordpress Plugins (http://shoalsummitsolutions.com) 10 * Copyright 2014- 15Mark O'Donnell ([email protected])10 * Copyright 2014-24 Mark O'Donnell ([email protected]) 11 11 * 12 12 * This program is free software: you can redistribute it and/or modify … … 29 29 * construct the widget 30 30 *------------------------------------------------------------------*/ 31 function mstw_ss_cdt_widget( ) { 31 //function mstw_ss_cdt_widget( ) { 32 function __construct( $name = 'mstw_ss_cdt_widget' ) { 32 33 // processes the widget 33 34 $widget_ops = array( … … 35 36 'description' => __( 'Display a countdown timer to the next scheduled game.', 'mstw-schedules-scoreboards' ), 36 37 ); 37 WP_Widget::__construct( 'mstw_ss_cdt_widget', 'MSTW Countdown Timer', $widget_ops ); 38 39 //WP_Widget::__construct( 'mstw_ss_cdt_widget', 'MSTW Countdown Timer', $widget_ops ); 40 parent::__construct( 'mstw_ss_cdt_widget', 'MSTW Countdown Timer', $widget_ops ); 41 38 42 } 39 43 -
mstw-schedules-scoreboards/trunk/includes/mstw-ss-schedule-widget.php
r1235893 r3064939 7 7 * 8 8 * MSTW Wordpress Plugins (http://shoalsummitsolutions.com) 9 * Copyright 2014- 15Mark O'Donnell ([email protected])9 * Copyright 2014-24 Mark O'Donnell ([email protected]) 10 10 * 11 11 * This program is free software: you can redistribute it and/or modify … … 26 26 27 27 // constructs a new widget instance 28 public function mstw_ss_sched_widget( ) { 29 $widget_ops = array( 30 'classname' => 'mstw_ss_sched_widget_class', 31 'description' => __( 'Display (simple) game schedules.', 'mstw-schedules-scoreboards' ), 32 ); 33 WP_Widget::__construct( 'mstw_ss_sched_widget', 'MSTW Game Schedules', $widget_ops ); 28 //public function mstw_ss_sched_widget( ) { 29 function __construct( $name = 'mstw_ss_sched_widget' ) { 30 //mstw_log_msg( "mstw_ss_sched_widget.mstw_ss_sched_widget:" ); 31 32 $widget_ops = array( 33 'classname' => 'mstw_ss_sched_widget_class', 34 'description' => __( 'Display (simple) game schedules.', 'mstw-schedules-scoreboards' ), 35 ); 36 37 parent::__construct( 'mstw_ss_sched_widget', 'MSTW Game Schedules', $widget_ops ); 38 34 39 } 35 40 -
mstw-schedules-scoreboards/trunk/mstw-schedules-scoreboards.php
r3050129 r3064939 4 4 Plugin URI: http://wordpress.org/extend/plugins/ 5 5 Description: Replaces the MSTW Game Schedules plugin. Includes game schedules and scoreboards. 6 Version: 1.5 6 Version: 1.5.1 7 7 Author: Mark O'Donnell 8 8 Author URI: http://shoalsummitsolutions.com … … 12 12 /*--------------------------------------------------------------------------- 13 13 * MSTW Wordpress Plugins (http://shoalsummitsolutions.com) 14 * Copyright 2014- 15Mark O'Donnell ([email protected])14 * Copyright 2014-24 Mark O'Donnell ([email protected]) 15 15 * 16 16 * This program is free software: you can redistribute it and/or modify -
mstw-schedules-scoreboards/trunk/readme.txt
r3050130 r3064939 5 5 Requires at least: 5.3 6 6 Tested up to: 6.4.3 7 Stable tag: 1.5 7 Stable tag: 1.5.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 52 52 == Changelog == 53 53 54 = 1.5.1 = 55 *More minor code fixed for PHP 8 (widgets) 56 54 57 = 1.5 = 55 58 *Corrected various (minor) code issues that caused problems with PHP 8
Note: See TracChangeset
for help on using the changeset viewer.