Changeset 3216205
- Timestamp:
- 01/03/2025 02:51:31 AM (14 months ago)
- Location:
- team-rosters/trunk
- Files:
-
- 3 edited
-
includes/mstw-tr-team-roster-admin-class.php (modified) (7 diffs)
-
mstw-team-rosters.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
team-rosters/trunk/includes/mstw-tr-team-roster-admin-class.php
r2823832 r3216205 44 44 45 45 self::$data_fields = array( 46 'player_first_name' => array( __( 'First Name', ' mstw-bracket-builder' ), 16, 32, 1 ),47 'player_last_name' => array( __( 'Last Name', ' mstw-bracket-builder' ), 16, 32, 1 ),46 'player_first_name' => array( __( 'First Name', 'team-rosters' ), 16, 32, 1 ), 47 'player_last_name' => array( __( 'Last Name', 'team-rosters' ), 16, 32, 1 ), 48 48 'player_number' => array( $options['number_label'], 3, 32, 1 ), 49 49 'player_position' => array( $options['position_label'], 4, 32, 1 ), … … 56 56 'player_home_town' => array( $options['home_town_label'], 16, 32, 1 ), 57 57 'player_country' => array( $options['country_label'], 16, 32, 1 ), 58 'player_bats' => array( __( 'Bats', ' mstw-bracket-builder' ), 3, 32, 2 ),59 'player_throws' => array( __( 'Throws', ' mstw-bracket-builder' ), 3, 32, 3 ),58 'player_bats' => array( __( 'Bats', 'team-rosters' ), 3, 32, 2 ), 59 'player_throws' => array( __( 'Throws', 'team-rosters' ), 3, 32, 3 ), 60 60 'player_other' => array( $options['other_info_label'], 16, 32, 1 ), 61 61 ); … … 122 122 <div class="wrap"> 123 123 124 <h1><?php _e( $screen_titles[$edit], 'team-rosters' )?></h1>124 <h1><?php echo $screen_titles[$edit] ?></h1> 125 125 126 126 <p class='mstw-lm-admin-instructions'> … … 177 177 ?> 178 178 <h1 class='mstw-lm-admin-instructions'> 179 <?php _e( 'Create a team before editting it\'s roster.', ' mstw-bracket-builder' );179 <?php _e( 'Create a team before editting it\'s roster.', 'team-rosters' ); 180 180 ?> 181 181 </h1> … … 192 192 // Nothing to do if team is changed (ajax still fires) 193 193 ?> 194 <a href="<?php echo admin_url( 'admin.php?page=manage-team-rosters' )?>" class="button mstw-lm-control-button"><?php _e( 'Change Team', ' mstw-bracket-builder' ) ?></a>194 <a href="<?php echo admin_url( 'admin.php?page=manage-team-rosters' )?>" class="button mstw-lm-control-button"><?php _e( 'Change Team', 'team-rosters' ) ?></a> 195 195 196 196 <?php … … 287 287 <tr> 288 288 <?php foreach ( $data_fields as $data_field ) { ?> 289 <th><?php _e( $data_field[0], 'team-rosters' )?></th>289 <th><?php echo $data_field[0] ?></th> 290 290 291 291 <?php } ?> … … 1034 1034 $screen -> add_help_tab( array( 1035 1035 'id' => $id, 1036 'title' => __( $title, 'team-rosters' ),1036 'title' => $title, 1037 1037 'callback' => array( $this, $callback ) 1038 1038 ) -
team-rosters/trunk/mstw-team-rosters.php
r2859330 r3216205 1 1 <?php 2 2 /* 3 Plugin Name: MSTW Team Rosters 4 Plugin URI: http://wordpress.org/extend/plugins/team-rosters/ 5 Description: Creates roster tables, player galleries, and single player pages. 6 Version: 4.6 7 Author: Mark O'Donnell 8 Author URI: http://shoalsummitsolutions.com 9 Text Domain: team-rosters 10 Domain Path: /lang 3 * Plugin Name: MSTW Team Rosters 4 * Plugin URI: http://shoalsummitsolutions.com 5 * Description: Manage & display team rosters. Front end displays include roster tables, player galleries, and single player profiles. 6 * Version: 4.7 7 * Requires at least: 3.4.2 8 * Requires PHP: 5.6 9 * Author: Mark O'Donnell 10 * Author URI: http://shoalsummitsolutions.com 11 * License: GPL v2 or later 12 * License URI: http://www.gnu.org/licenses/gpl-2.0.html 13 * Text Domain: team-rosters 14 * Domain Path: /lang 11 15 */ 12 13 /*---------------------------------------------------------------------------14 * MSTW Wordpress Plugins (http://shoalsummitsolutions.com)15 * Copyright 2014-23 Mark O'Donnell ([email protected])16 *17 * This program is free software: you can redistribute it and/or modify18 * it under the terms of the GNU General Public License as published by19 * the Free Software Foundation, either version 3 of the License, or20 * (at your option) any later version.21 *22 * This program is distributed in the hope that it will be useful,23 * but WITHOUT ANY WARRANTY; without even the implied warranty of24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the25 * GNU General Public License for more details.26 *27 * You should have received a copy of the GNU General Public License28 * along with this program. If not, see <http://www.gnu.org/licenses/>.29 */30 16 31 17 // set up the text domain to be used globally -
team-rosters/trunk/readme.txt
r3050132 r3216205 2 2 Contributors: MarkODonnell 3 3 Donate link: http://shoalsummitsolutions.com 4 Tags: sports,teams,rosters,players,team roster 4 Tags: sports,teams,rosters,players,team rosters 5 5 Requires at least: 3.4.2 6 Tested up to: 6.4.3 6 Tested up to: 6.7.1 7 Stable tag: 4.7 7 8 Requires PHP: 7.0 8 Stable tag: 4.69 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html 11 12 11 13 12 Manages multiple team rosters. Creates roster tables, player galleries, and player profile pages. … … 44 43 45 44 == Changelog == 45 46 = 4.7 = 47 * Tested on PHP version 8.2.23 & Wordpress 6.7.1 48 * Cleaned up some minor code issues. 49 * No functional or performance changes. 46 50 47 51 = 4.6 = … … 197 201 198 202 Version 4.1 of the plugin was developed and tested on WordPress 4.7.3. If you use older version of WordPress, good luck! If you are using a newer WP version, please let me know how the plugin works, especially if you encounter problems. 199
Note: See TracChangeset
for help on using the changeset viewer.