global $wpdb; // 1. Fetch all top 100 players ordered by rank // Replace 'nhl_player_stats' with your actual table name $table_name = 'nhl_player_stats'; $top_100 = $wpdb->get_results( "SELECT * FROM {$table_name} WHERE rank <= 100 ORDER BY rank ASC" ); if ( ! $top_100 ) { return '

No player data found.

'; } // Map the top 100 by rank for quick O(1) lookups $rank_map = []; foreach ( $top_100 as $player ) { $rank_map[intval( $player->rank )] = $player; } // 2. Identify active players within the top 100 and determine their windows (±3) $included_ranks = []; foreach ( $top_100 as $player ) { // Adjust this condition based on how you flag active players in your database if ( isset( $player->is_active ) && $player->is_active == 1 ) { $target_rank = intval( $player->rank ); // Define the window (3 ahead, 3 behind, bounded between 1 and 100) $start = max( 1, $target_rank - 3 ); $end = min( 100, $target_rank + 3 ); for ( $r = $start; $r <= $end; $r++ ) { $included_ranks[$r] = true; } } } // Sort the captured ranks ascending ksort( $included_ranks ); // 3. Build the final display list and check for gaps $players_to_display = []; foreach ( array_keys( $included_ranks ) as $rank ) { if ( isset( $rank_map[$rank] ) ) { $players_to_display[] = $rank_map[$rank]; } } // 4. Render the Output Table $output = '
'; $output .= ''; $output .= ''; $output .= ''; $prev_rank = null; foreach ( $players_to_display as $player ) { $current_rank = intval( $player->rank ); // If there's a gap greater than 1 between the previous rank and current rank, insert a separator row if ( $prev_rank !== null && $current_rank > ( $prev_rank + 1 ) ) { $output .= ''; } // Add a CSS class or highlight style if the player is active $is_active_class = ( isset( $player->is_active ) && $player->is_active == 1 ) ? ' active-target-player' : ''; $output .= ''; $output .= ''; $output .= ''; $output .= ''; $output .= ''; $output .= ''; $prev_rank = $current_rank; } $output .= ''; $output .= '
RankPlayerTeamStats
• • •
' . esc_html( $player->rank ) . '' . esc_html( $player->player_name ) . '' . esc_html( $player->team_abbr ) . '' . esc_html( $player->points ?? '' ) . '
'; $output .= '
'; echo $output; x10003q – Activity – OutsideTheGarden Boards – Page 2
OCTOBER
«
Tue
7
Wed
8
Thu
9
Fri
10
Sat
11
Sun
12
Mon
13
»
x10003q
x10003q
Group: Registered
Joined: 2023-09-04
Legend
Follow
Why would Larkin want to come to NY? That is never happening...

In forum Where Smit Hits The Fan

2 months ago
The Rangers might have the rare opportunity to ruin the care...

In forum Where Smit Hits The Fan

3 months ago
Well neither Andersson or Kravstov had whatever it takes to ...

In forum Where Smit Hits The Fan

3 months ago
It is not clear whether Ortmeyer left or was fired. Either w...

In forum Where Smit Hits The Fan

3 months ago
I read the article by VM and yes, Drury is a public speaking...

In forum Where Smit Hits The Fan

4 months ago
Since we are not in the draft/scouting room, the GM at the t...

In forum Where Smit Hits The Fan

4 months ago
He could, but what does he gain? yup    ...

In forum Where Smit Hits The Fan

4 months ago
This for sure come on, they know, they just learned its be...

In forum Where Smit Hits The Fan

4 months ago
What do you expect him to say - 'yeah, our top 6 needs more ...

In forum Where Smit Hits The Fan

4 months ago
Garand with the win -

In forum Where Smit Hits The Fan

4 months ago
Kartye off for a slash 3:13 left - TB EN

In forum Where Smit Hits The Fan

4 months ago
Rangers have been out of synch on man advantage breaks

In forum Where Smit Hits The Fan

4 months ago
TB gets post #3

In forum Where Smit Hits The Fan

4 months ago
Garand looking good

In forum Where Smit Hits The Fan

4 months ago
kartye rejected by Halverson

In forum Where Smit Hits The Fan

4 months ago
Page 2 / 417