// ========================================================================= // FUNCTION: Injury Manager & Player Bucket Synchronizer // ========================================================================= /** * Handles adding, editing, and deleting records in `otg_injuries`, * and automatically synchronizes the `player_bucket` field in `otg_players`. */ function otg_handle_injury_management_submission() { global $wpdb; if (!isset($_POST['otg_injury_nonce']) || !wp_verify_nonce($_POST['otg_injury_nonce'], 'otg_save_injury_action')) { return; } if (!current_user_can('manage_options')) { return; } $action = isset($_POST['injury_action']) ? sanitize_text_field($_POST['injury_action']) : ''; if ($action === 'delete') { $injury_index = isset($_POST['InjuryIndex']) ? intval($_POST['InjuryIndex']) : 0; if ($injury_index > 0) { $injury_record = $wpdb->get_row($wpdb->prepare("SELECT ID FROM otg_injuries WHERE InjuryIndex = %d", $injury_index)); if ($injury_record) { $player_id = $injury_record->ID; $wpdb->delete('otg_injuries', ['InjuryIndex' => $injury_index]); otg_recalculate_player_bucket($player_id); } } } elseif ($action === 'save') { $injury_index = isset($_POST['InjuryIndex']) ? intval($_POST['InjuryIndex']) : 0; $player_id = isset($_POST['player_id']) ? intval($_POST['player_id']) : 0; if ($player_id > 0) { $player_name = $wpdb->get_var($wpdb->prepare("SELECT Name FROM otg_players WHERE nhl_id = %d", $player_id)); $data = [ 'ID' => $player_id, 'Name' => $player_name ?: '', 'Injured' => sanitize_text_field($_POST['Injured']), 'during_game' => sanitize_text_field($_POST['during_game']), 'Injury' => sanitize_text_field($_POST['Injury']), 'Updated' => sanitize_text_field($_POST['Updated']), 'Status' => sanitize_text_field($_POST['Status']), 'Notes' => sanitize_text_field($_POST['Notes']) ]; if ($injury_index > 0) { $wpdb->update('otg_injuries', $data, ['InjuryIndex' => $injury_index]); } else { $wpdb->insert('otg_injuries', $data); } otg_recalculate_player_bucket($player_id); } } } add_action('init', 'otg_handle_injury_management_submission'); /** * Recalculates and updates the player_bucket field in otg_players * based on active records remaining in otg_injuries. */ function otg_recalculate_player_bucket($player_id) { global $wpdb; $active_injury = $wpdb->get_row($wpdb->prepare( "SELECT Status FROM otg_injuries WHERE ID = %s AND (Status != 'Returned' AND Status != '') ORDER BY InjuryIndex DESC LIMIT 1", $player_id )); if ($active_injury) { $status_lower = strtolower($active_injury->Status); if (strpos($status_lower, 'ltir') !== false) { $bucket = 'LTIR'; } elseif (strpos($status_lower, 'reserve') !== false || strpos($status_lower, 'ir') !== false) { $bucket = 'Injured Reserve'; } else { $bucket = 'Injured'; } } else { $bucket = 'Active'; } $wpdb->update( 'otg_players', ['player_bucket' => $bucket], ['nhl_id' => $player_id] ); } // ========================================================================= // ADMIN PAGE RENDERER: Injury Manager Dashboard View // ========================================================================= function otg_render_injury_manager_admin_page() { if (!current_user_can('manage_options')) { wp_die(__('You do not have sufficient permissions to access this page.')); } global $wpdb; $rangers_players = $wpdb->get_results("SELECT nhl_id, Name FROM otg_players ORDER BY Name ASC"); $injuries = $wpdb->get_results("SELECT * FROM otg_injuries ORDER BY Injured DESC, InjuryIndex DESC"); $input_style = 'width: 100%; height: 38px; padding: 0 10px; background: #222; border: 1px solid #444; color: #fff; border-radius: 4px; box-sizing: border-box; font-size: 0.9em;'; echo '
'; echo '
Rangers Injury Manager
'; // Add / Edit Injury Form echo '
'; wp_nonce_field('otg_save_injury_action', 'otg_injury_nonce'); echo ''; echo ''; echo '
'; // Player Selection echo '
'; echo ''; echo ''; echo '
'; // Injured Date echo '
'; echo ''; echo ''; echo '
'; // Status Bucket echo '
'; echo ''; echo ''; echo '
'; // Injury Type / Location echo '
'; echo ''; echo ''; echo '
'; // During Game echo '
'; echo ''; echo ''; echo '
'; // Updated Date echo '
'; echo ''; echo ''; echo '
'; echo '
'; // End first row // Second Row: Notes and Buttons echo '
'; echo '
'; echo ''; echo ''; echo '
'; echo '
'; echo ''; echo ''; echo '
'; echo '
'; // End second row echo '
'; // Injuries Table Styles echo ''; // Existing Injuries Table echo ''; echo ''; echo ''; if (empty($injuries)) { echo ''; } else { foreach ($injuries as $row) { echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; } } echo '
IDPlayerInjuredInjuryStatusUpdatedNotesActions
No injury records found.
' . esc_html($row->InjuryIndex) . '' . esc_html($row->Name) . '' . esc_html($row->Injured) . '' . esc_html($row->Injury) . '' . esc_html($row->Status) . '' . esc_html($row->Updated) . '' . esc_html($row->Notes) . ''; // Edit button trigger echo ''; // Delete form echo '
'; wp_nonce_field('otg_save_injury_action', 'otg_injury_nonce'); echo ''; echo ''; echo ''; echo '
'; echo '
'; // JavaScript helper for form management echo ''; echo '
'; } Rosie LaRose – Activity – OutsideTheGarden Boards
NOVEMBER
«
Tue
11
Wed
12
Thu
13
Fri
14
Sat
15
Sun
16
Mon
17
»
Rosie LaRose
Group: Registered
Joined: 2023-09-04
First Liner
5
Follow
Ken: we only have 8 goddamned shots on goal? Dave: you can...

In forum Where Smit Hits The Fan

5 months ago
This. I remember watching Paul Maurice lighting up the Panth...

In forum Where Smit Hits The Fan

5 months ago
I fear I’ve lived long enough to know you’re right. And tha...

In forum Where Smit Hits The Fan

5 months ago
This is really hard to watch on tv. I feel for the season ti...

In forum Where Smit Hits The Fan

5 months ago
As Howard Cosell once said: “What. A. Pathetic. Performance....

In forum Where Smit Hits The Fan

5 months ago
Get fucking rid of Drury now. I’m fucking done. He can tak...

In forum Where Smit Hits The Fan

5 months ago
I can’t. You’re spot on. Goodie, JT, Kreids, now Bread. Wh...

In forum Where Smit Hits The Fan

6 months ago
If I was at “good” at my job (pre retirement) as Drury is, I...

In forum Where Smit Hits The Fan

6 months ago
Don’t know whether to laugh or cry watching Sam between peri...

In forum Where Smit Hits The Fan

6 months ago
@rangernut I get it. We’re all pissed off cause this tea...

In forum Where Smit Hits The Fan

6 months ago
This! Thank you.  

In forum Where Smit Hits The Fan

6 months ago
Pretty underwhelming is the understatement of the century. ...

In forum Where Smit Hits The Fan

6 months ago
Let me get this right. Rangers retain 50% of salary and don...

In forum Where Smit Hits The Fan

6 months ago
Q: What’s the common denominator over the last four decades...

In forum Where Smit Hits The Fan

6 months ago
His sorry ass isn’t worth a bag of pucks. But that’s still m...

In forum Where Smit Hits The Fan

6 months ago
Page 1 / 27