*/
$team_logos = array();
$i = 0;
foreach ($teams as $team) {
    if (!has_post_thumbnail($team)) {
        $logo = '';
    } else {
        $logo = get_the_post_thumbnail($team, 'sportspress-fit-icon');
    }
    $alt = sizeof($teams) == 2 && $i % 2;
    // Add team name
    if ($show_team_names) {
        if ($alt) {
            $logo .= ' <strong class="sp-team-name">' . sp_get_team_name($team, $abbreviate_teams) . '</strong>';
        } else {
            $logo = '<strong class="sp-team-name">' . sp_get_team_name($team, $abbreviate_teams) . '</strong> ' . $logo;
        }
    }
    // Add link
    if ($link_teams) {
        $logo = '<a href="' . get_post_permalink($team) . '">' . $logo . '</a>';
    }
    // Add result
    if ($show_results && !empty($results)) {
        $team_result = array_shift($results);
        $team_result = apply_filters('sportspress_event_logos_team_result', $team_result, $id, $team);
        if ($alt) {
            $logo = '<strong class="sp-team-result">' . $team_result . '</strong> ' . $logo;
        } else {
            $logo .= ' <strong class="sp-team-result">' . $team_result . '</strong>';
        }
Exemple #2
0
     $nationalities = $player->nationalities();
     if (!empty($nationalities)) {
         foreach ($nationalities as $nationality) {
             $name = '<span class="player-flag"><img src="' . plugin_dir_url(SP_PLUGIN_FILE) . 'assets/images/flags/' . strtolower($nationality) . '.png" alt="' . $nationality . '"></span>' . $name;
         }
         $name_class .= ' has-photo';
     }
 }
 if ($link_posts) {
     $permalink = get_post_permalink($player_id);
     $name = '<a href="' . $permalink . '">' . $name . '</a>';
 }
 $output .= '<td class="data-name' . $name_class . '">' . $name . '</td>';
 if (array_key_exists('team', $labels)) {
     $team = sp_array_value($row, 'team', get_post_meta($id, 'sp_team', true));
     $team_name = sp_get_team_name($team, $abbreviate_teams);
     if ($link_teams && false !== get_post_status($team)) {
         $team_name = '<a href="' . get_post_permalink($team) . '">' . $team_name . '</a>';
     }
     $output .= '<td class="data-team">' . $team_name . '</td>';
 }
 if (array_key_exists('position', $labels)) {
     $position = sp_array_value($row, 'position', null);
     if (null === $position || !$position) {
         $positions = wp_strip_all_tags(get_the_term_list($player_id, 'sp_position', '', ', '));
     } else {
         $position_term = get_term_by('id', $position, 'sp_position', ARRAY_A);
         $positions = sp_array_value($position_term, 'name', '&mdash;');
     }
     $output .= '<td class="data-position">' . $positions . '</td>';
 }
 /**
  * Returns formatted data
  *
  * @access public
  * @param bool $admin
  * @return array
  */
 public function data($admin = false)
 {
     $league_ids = sp_get_the_term_ids($this->ID, 'sp_league');
     $season_ids = sp_get_the_term_ids($this->ID, 'sp_season');
     $table_stats = (array) get_post_meta($this->ID, 'sp_teams', true);
     $usecolumns = get_post_meta($this->ID, 'sp_columns', true);
     $adjustments = get_post_meta($this->ID, 'sp_adjustments', true);
     $select = get_post_meta($this->ID, 'sp_select', true);
     $abbreviate_teams = get_option('sportspress_abbreviate_teams', 'yes') === 'yes' ? true : false;
     // Get labels from result variables
     $result_labels = (array) sp_get_var_labels('sp_result');
     // Get labels from outcome variables
     $outcome_labels = (array) sp_get_var_labels('sp_outcome');
     // Get teams automatically if set to auto
     if ('auto' == $select) {
         $team_ids = array();
         $args = array('post_type' => 'sp_team', 'numberposts' => -1, 'posts_per_page' => -1, 'order' => 'ASC', 'tax_query' => array('relation' => 'AND'));
         if ($league_ids) {
             $args['tax_query'][] = array('taxonomy' => 'sp_league', 'field' => 'term_id', 'terms' => $league_ids);
         }
         if ($season_ids) {
             $args['tax_query'][] = array('taxonomy' => 'sp_season', 'field' => 'term_id', 'terms' => $season_ids);
         }
         $teams = get_posts($args);
         if ($teams && is_array($teams)) {
             foreach ($teams as $team) {
                 $team_ids[] = $team->ID;
             }
         }
     } else {
         $team_ids = (array) get_post_meta($this->ID, 'sp_team', false);
     }
     // Get all leagues populated with stats where available
     $tempdata = sp_array_combine($team_ids, $table_stats);
     // Create entry for each team in totals
     $totals = array();
     $placeholders = array();
     // Initialize incremental counter
     $this->pos = 0;
     $this->counter = 0;
     // Initialize team compare
     $this->compare = null;
     // Initialize streaks counter
     $streaks = array();
     // Initialize last counters
     $last5s = array();
     $last10s = array();
     // Initialize record counters
     $homerecords = array();
     $awayrecords = array();
     foreach ($team_ids as $team_id) {
         if (!$team_id) {
             continue;
         }
         // Initialize team streaks counter
         $streaks[$team_id] = array('name' => '', 'count' => 0, 'fire' => 1);
         // Initialize team last counters
         $last5s[$team_id] = array();
         $last10s[$team_id] = array();
         // Initialize team record counters
         $homerecords[$team_id] = array();
         $awayrecords[$team_id] = array();
         // Add outcome types to team last and record counters
         foreach ($outcome_labels as $key => $value) {
             $last5s[$team_id][$key] = 0;
             $last10s[$team_id][$key] = 0;
             $homerecords[$team_id][$key] = 0;
             $awayrecords[$team_id][$key] = 0;
         }
         // Initialize team totals
         $totals[$team_id] = array('eventsplayed' => 0, 'eventsplayed_home' => 0, 'eventsplayed_away' => 0, 'eventsplayed_venue' => 0, 'eventminutes' => 0, 'eventminutes_home' => 0, 'eventminutes_away' => 0, 'eventminutes_venue' => 0, 'streak' => 0, 'streak_home' => 0, 'streak_away' => 0, 'streak_venue' => 0);
         foreach ($result_labels as $key => $value) {
             $totals[$team_id][$key . 'for'] = 0;
             $totals[$team_id][$key . 'for_home'] = 0;
             $totals[$team_id][$key . 'for_away'] = 0;
             $totals[$team_id][$key . 'for_venue'] = 0;
             $totals[$team_id][$key . 'against'] = 0;
             $totals[$team_id][$key . 'against_home'] = 0;
             $totals[$team_id][$key . 'against_away'] = 0;
             $totals[$team_id][$key . 'against_venue'] = 0;
         }
         foreach ($outcome_labels as $key => $value) {
             $totals[$team_id][$key] = 0;
             $totals[$team_id][$key . '_home'] = 0;
             $totals[$team_id][$key . '_away'] = 0;
             $totals[$team_id][$key . '_venue'] = 0;
         }
         // Get static stats
         $static = get_post_meta($team_id, 'sp_columns', true);
         if ('yes' == get_option('sportspress_team_column_editing', 'no') && $league_ids && $season_ids) {
             // Add static stats to placeholders
             foreach ($league_ids as $league_id) {
                 foreach ($season_ids as $season_id) {
                     $placeholders[$team_id] = (array) sp_array_value(sp_array_value($static, $league_id, array()), $season_id, array());
                 }
             }
         }
     }
     $args = array('post_type' => 'sp_event', 'post_status' => array('publish', 'future'), 'numberposts' => -1, 'posts_per_page' => -1, 'orderby' => 'post_date', 'order' => 'DESC', 'meta_query' => array(array('key' => 'sp_format', 'value' => apply_filters('sportspress_competitive_event_formats', array('league')), 'compare' => 'IN')), 'tax_query' => array('relation' => 'AND'));
     if ($league_ids) {
         $args['tax_query'][] = array('taxonomy' => 'sp_league', 'field' => 'term_id', 'terms' => $league_ids);
     }
     if ($season_ids) {
         $args['tax_query'][] = array('taxonomy' => 'sp_season', 'field' => 'term_id', 'terms' => $season_ids);
     }
     $args = apply_filters('sportspress_table_data_event_args', $args);
     $events = get_posts($args);
     $e = 0;
     // Event loop
     foreach ($events as $event) {
         $results = (array) get_post_meta($event->ID, 'sp_results', true);
         $minutes = get_post_meta($event->ID, 'sp_minutes', true);
         if ($minutes === '') {
             $minutes = get_option('sportspress_event_minutes', 90);
         }
         $i = 0;
         foreach ($results as $team_id => $team_result) {
             if (!in_array($team_id, $team_ids)) {
                 continue;
             }
             if ($team_result) {
                 foreach ($team_result as $key => $value) {
                     if ($key == 'outcome') {
                         if (!is_array($value)) {
                             $value = array($value);
                         }
                         foreach ($value as $outcome) {
                             // Increment events played and outcome count
                             if (array_key_exists($team_id, $totals) && is_array($totals[$team_id]) && array_key_exists($outcome, $totals[$team_id])) {
                                 $totals[$team_id]['eventsplayed']++;
                                 $totals[$team_id]['eventminutes'] += $minutes;
                                 $totals[$team_id][$outcome]++;
                                 // Add to home or away stats
                                 if (0 === $i) {
                                     $totals[$team_id]['eventsplayed_home']++;
                                     $totals[$team_id]['eventminutes_home'] += $minutes;
                                     $totals[$team_id][$outcome . '_home']++;
                                 } else {
                                     $totals[$team_id]['eventsplayed_away']++;
                                     $totals[$team_id]['eventminutes_away'] += $minutes;
                                     $totals[$team_id][$outcome . '_away']++;
                                 }
                                 // Add to venue stats
                                 if (sp_is_home_venue($team_id, $event->ID)) {
                                     $totals[$team_id]['eventsplayed_venue']++;
                                     $totals[$team_id]['eventminutes_venue'] += $minutes;
                                     $totals[$team_id][$outcome . '_venue']++;
                                 }
                             }
                             if ($outcome && $outcome != '-1') {
                                 // Add to streak counter
                                 if ($streaks[$team_id]['fire'] && ($streaks[$team_id]['name'] == '' || $streaks[$team_id]['name'] == $outcome)) {
                                     $streaks[$team_id]['name'] = $outcome;
                                     $streaks[$team_id]['count']++;
                                 } else {
                                     $streaks[$team_id]['fire'] = 0;
                                 }
                                 // Add to last 5 counter if sum is less than 5
                                 if (array_key_exists($team_id, $last5s) && array_key_exists($outcome, $last5s[$team_id]) && array_sum($last5s[$team_id]) < 5) {
                                     $last5s[$team_id][$outcome]++;
                                 }
                                 // Add to last 10 counter if sum is less than 10
                                 if (array_key_exists($team_id, $last10s) && array_key_exists($outcome, $last10s[$team_id]) && array_sum($last10s[$team_id]) < 10) {
                                     $last10s[$team_id][$outcome]++;
                                 }
                                 // Add to home or away record
                                 if (0 === $i) {
                                     if (array_key_exists($team_id, $homerecords) && array_key_exists($outcome, $homerecords[$team_id])) {
                                         $homerecords[$team_id][$outcome]++;
                                     }
                                 } else {
                                     if (array_key_exists($team_id, $awayrecords) && array_key_exists($outcome, $awayrecords[$team_id])) {
                                         $awayrecords[$team_id][$outcome]++;
                                     }
                                 }
                             }
                         }
                     } else {
                         if (array_key_exists($team_id, $totals) && is_array($totals[$team_id]) && array_key_exists($key . 'for', $totals[$team_id])) {
                             $totals[$team_id][$key . 'for'] += $value;
                             $totals[$team_id][$key . 'for' . ($e + 1)] = $value;
                             // Add to home or away stats
                             if (0 === $i) {
                                 $totals[$team_id][$key . 'for_home'] += $value;
                             } else {
                                 $totals[$team_id][$key . 'for_away'] += $value;
                             }
                             // Add to venue stats
                             if (sp_is_home_venue($team_id, $event->ID)) {
                                 $totals[$team_id][$key . 'for_venue'] += $value;
                             }
                             foreach ($results as $other_team_id => $other_result) {
                                 if ($other_team_id != $team_id && array_key_exists($key . 'against', $totals[$team_id])) {
                                     $totals[$team_id][$key . 'against'] += sp_array_value($other_result, $key, 0);
                                     $totals[$team_id][$key . 'against' . ($e + 1)] = sp_array_value($other_result, $key, 0);
                                     // Add to home or away stats
                                     if (0 === $i) {
                                         $totals[$team_id][$key . 'against_home'] += sp_array_value($other_result, $key, 0);
                                     } else {
                                         $totals[$team_id][$key . 'against_away'] += sp_array_value($other_result, $key, 0);
                                     }
                                     // Add to venue stats
                                     if (sp_is_home_venue($team_id, $event->ID)) {
                                         $totals[$team_id][$key . 'against_venue'] += sp_array_value($other_result, $key, 0);
                                     }
                                 }
                             }
                         }
                     }
                 }
             }
             $i++;
         }
         $e++;
     }
     foreach ($streaks as $team_id => $streak) {
         // Compile streaks counter and add to totals
         if ($streak['name']) {
             $args = array('name' => $streak['name'], 'post_type' => 'sp_outcome', 'post_status' => 'publish', 'posts_per_page' => 1, 'orderby' => 'menu_order', 'order' => 'ASC');
             $outcomes = get_posts($args);
             if ($outcomes) {
                 $outcome = reset($outcomes);
                 $abbreviation = get_post_meta($outcome->ID, 'sp_abbreviation', true);
                 if (!$abbreviation) {
                     $abbreviation = substr($outcome->post_title, 0, 1);
                 }
                 $totals[$team_id]['streak'] = $abbreviation . $streak['count'];
             } else {
                 $totals[$team_id]['streak'] = null;
             }
         } else {
             $totals[$team_id]['streak'] = null;
         }
     }
     foreach ($last5s as $team_id => $last5) {
         // Add last 5 to totals
         $totals[$team_id]['last5'] = $last5;
     }
     foreach ($last10s as $team_id => $last10) {
         // Add last 10 to totals
         $totals[$team_id]['last10'] = $last10;
     }
     foreach ($homerecords as $team_id => $homerecord) {
         // Add home record to totals
         $totals[$team_id]['homerecord'] = $homerecord;
     }
     foreach ($awayrecords as $team_id => $awayrecord) {
         // Add away record to totals
         $totals[$team_id]['awayrecord'] = $awayrecord;
     }
     $args = array('post_type' => 'sp_column', 'numberposts' => -1, 'posts_per_page' => -1, 'orderby' => 'menu_order', 'order' => 'ASC');
     $stats = get_posts($args);
     $columns = array();
     $this->priorities = array();
     foreach ($stats as $stat) {
         // Get post meta
         $meta = get_post_meta($stat->ID);
         // Add equation to object
         $stat->equation = sp_array_value(sp_array_value($meta, 'sp_equation', array()), 0, null);
         $stat->precision = sp_array_value(sp_array_value($meta, 'sp_precision', array()), 0, 0);
         // Add column name to columns
         $columns[$stat->post_name] = $stat->post_title;
         // Add order to priorities if priority is set and does not exist in array already
         $priority = sp_array_value(sp_array_value($meta, 'sp_priority', array()), 0, 0);
         if ($priority && !array_key_exists($priority, $this->priorities)) {
             $this->priorities[$priority] = array('column' => $stat->post_name, 'order' => sp_array_value(sp_array_value($meta, 'sp_order', array()), 0, 'DESC'));
         }
     }
     // Sort priorities in descending order
     ksort($this->priorities);
     // Initialize games back column variable
     $gb_column = null;
     // Fill in empty placeholder values for each team
     foreach ($team_ids as $team_id) {
         if (!$team_id) {
             continue;
         }
         foreach ($stats as $stat) {
             if (sp_array_value(sp_array_value($placeholders, $team_id, array()), $stat->post_name, '') == '') {
                 if ($stat->equation == null) {
                     $placeholder = sp_array_value(sp_array_value($adjustments, $team_id, array()), $stat->post_name, null);
                     if ($placeholder == null) {
                         $placeholder = '-';
                     }
                 } else {
                     // Solve
                     $placeholder = sp_solve($stat->equation, sp_array_value($totals, $team_id, array()), $stat->precision);
                     if ('$gamesback' == $stat->equation) {
                         $gb_column = $stat->post_name;
                     }
                     if (!in_array($stat->equation, array('$gamesback', '$streak', '$last5', '$last10', '$homerecord', '$awayrecord'))) {
                         // Adjustments
                         $adjustment = sp_array_value($adjustments, $team_id, array());
                         if ($adjustment != 0) {
                             $placeholder += sp_array_value($adjustment, $stat->post_name, 0);
                             $placeholder = number_format($placeholder, $stat->precision, '.', '');
                         }
                     }
                 }
                 $placeholders[$team_id][$stat->post_name] = $placeholder;
             }
         }
     }
     // Find win and loss variables for games back
     $w = $l = null;
     if ($gb_column) {
         $args = array('post_type' => 'sp_outcome', 'numberposts' => 1, 'posts_per_page' => 1, 'meta_query' => array(array('key' => 'sp_condition', 'value' => '>')));
         $outcomes = get_posts($args);
         if ($outcomes) {
             $outcome = reset($outcomes);
             if (is_array($stats)) {
                 foreach ($stats as $stat) {
                     if ('$' . $outcome->post_name == $stat->equation) {
                         $w = $stat->post_name;
                     }
                 }
             }
         }
         // Calculate games back
         $args = array('post_type' => 'sp_outcome', 'numberposts' => 1, 'posts_per_page' => 1, 'meta_query' => array(array('key' => 'sp_condition', 'value' => '<')));
         $outcomes = get_posts($args);
         if ($outcomes) {
             $outcome = reset($outcomes);
             if (is_array($stats)) {
                 foreach ($stats as $stat) {
                     if ('$' . $outcome->post_name == $stat->equation) {
                         $l = $stat->post_name;
                     }
                 }
             }
         }
     }
     // Merge the data and placeholders arrays
     $merged = array();
     foreach ($placeholders as $team_id => $team_data) {
         // Add team name to row
         $merged[$team_id] = array();
         $team_data['name'] = sp_get_team_name($team_id, $abbreviate_teams);
         foreach ($team_data as $key => $value) {
             // Use static data if key exists and value is not empty, else use placeholder
             if (array_key_exists($team_id, $tempdata) && array_key_exists($key, $tempdata[$team_id]) && $tempdata[$team_id][$key] != '') {
                 $value = $tempdata[$team_id][$key];
             }
             $merged[$team_id][$key] = $value;
         }
     }
     uasort($merged, array($this, 'sort'));
     // Calculate position of teams for ties
     foreach ($merged as $team_id => $team_columns) {
         $merged[$team_id]['pos'] = $this->calculate_pos($team_columns);
     }
     // Rearrange data array to reflect values
     $data = array();
     foreach ($merged as $key => $value) {
         $data[$key] = $tempdata[$key];
     }
     if ($admin) {
         $this->add_gb($placeholders, $w, $l, $gb_column);
         return array($columns, $usecolumns, $data, $placeholders, $merged);
     } else {
         $this->add_gb($merged, $w, $l, $gb_column);
         if (!is_array($usecolumns)) {
             $usecolumns = array();
         }
         $labels = array_merge(array('pos' => __('Pos', 'sportspress'), 'name' => __('Team', 'sportspress')), $columns);
         $merged[0] = $labels;
         return $merged;
     }
 }
 /**
  * Returns formatted data
  *
  * @access public
  * @param int $league_id
  * @param bool $admin
  * @return array
  */
 public function data($league_id, $admin = false, $section = -1)
 {
     $seasons = (array) get_the_terms($this->ID, 'sp_season');
     $metrics = (array) get_post_meta($this->ID, 'sp_metrics', true);
     $stats = (array) get_post_meta($this->ID, 'sp_statistics', true);
     $leagues = sp_array_value((array) get_post_meta($this->ID, 'sp_leagues', true), $league_id, array());
     $abbreviate_teams = get_option('sportspress_abbreviate_teams', 'yes') === 'yes' ? true : false;
     $manual_columns = 'manual' == get_option('sportspress_player_columns', 'auto') ? true : false;
     // Get performance labels
     $args = array('post_type' => array('sp_performance'), 'numberposts' => 100, 'posts_per_page' => 100, 'orderby' => 'menu_order', 'order' => 'ASC');
     $posts = get_posts($args);
     if ($manual_columns) {
         $usecolumns = get_post_meta($this->ID, 'sp_columns', true);
         $has_checkboxes = true;
     } else {
         $usecolumns = array();
         if (is_array($posts)) {
             foreach ($posts as $post) {
                 // Get visibility
                 $visible = get_post_meta($post->ID, 'sp_visible', true);
                 if ('' === $visible || $visible) {
                     $usecolumns[] = $post->post_name;
                 }
             }
         }
         $has_checkboxes = false;
     }
     $performance_labels = array();
     foreach ($posts as $post) {
         if (-1 === $section) {
             $performance_labels[$post->post_name] = $post->post_title;
         } else {
             $post_section = get_post_meta($post->ID, 'sp_section', true);
             if ('' === $post_section) {
                 $post_section = -1;
             }
             if ($section == $post_section || -1 == $post_section) {
                 $performance_labels[$post->post_name] = $post->post_title;
             }
         }
     }
     // Get statistic labels
     $args = array('post_type' => array('sp_statistic'), 'numberposts' => 100, 'posts_per_page' => 100, 'orderby' => 'menu_order', 'order' => 'ASC');
     $posts = get_posts($args);
     if ($manual_columns) {
         $usecolumns += get_post_meta($this->ID, 'sp_columns', true);
     } else {
         if (is_array($posts)) {
             foreach ($posts as $post) {
                 // Get visibility
                 $visible = get_post_meta($post->ID, 'sp_visible', true);
                 if ('' === $visible || $visible) {
                     $usecolumns[] = $post->post_name;
                 }
             }
         }
     }
     // Get labels from outcome variables
     $outcome_labels = (array) sp_get_var_labels('sp_outcome');
     // Get labels from result variables
     $result_labels = (array) sp_get_var_labels('sp_result');
     // Generate array of all season ids and season names
     $div_ids = array();
     $season_names = array();
     foreach ($seasons as $season) {
         if (is_object($season) && property_exists($season, 'term_id') && property_exists($season, 'name')) {
             $div_ids[] = $season->term_id;
             $season_names[$season->term_id] = $season->name;
         }
     }
     $div_ids[] = 0;
     $season_names[0] = __('Total', 'sportspress');
     $data = array();
     // Get all seasons populated with data where available
     $data = sp_array_combine($div_ids, sp_array_value($stats, $league_id, array()));
     // Get equations from statistic variables
     $equations = sp_get_var_equations('sp_statistic');
     // Initialize placeholders array
     $placeholders = array();
     foreach ($div_ids as $div_id) {
         $totals = array('eventsattended' => 0, 'eventsplayed' => 0, 'eventsstarted' => 0, 'eventssubbed' => 0, 'eventminutes' => 0, 'streak' => 0, 'last5' => null, 'last10' => null);
         foreach ($performance_labels as $key => $value) {
             $totals[$key] = 0;
         }
         foreach ($outcome_labels as $key => $value) {
             $totals[$key] = 0;
         }
         foreach ($result_labels as $key => $value) {
             $totals[$key . 'for'] = $totals[$key . 'against'] = 0;
         }
         // Initialize streaks counter
         $streak = array('name' => '', 'count' => 0, 'fire' => 1);
         // Initialize last counters
         $last5 = array();
         $last10 = array();
         // Add outcome types to last counters
         foreach ($outcome_labels as $key => $value) {
             $last5[$key] = 0;
             $last10[$key] = 0;
         }
         // Get all events involving the team in current season
         $args = array('post_type' => 'sp_event', 'numberposts' => -1, 'posts_per_page' => -1, 'order' => 'DESC', 'meta_query' => array('relation' => 'AND', array('key' => 'sp_player', 'value' => $this->ID), array('key' => 'sp_format', 'value' => apply_filters('sportspress_competitive_event_formats', array('league')), 'compare' => 'IN')), 'tax_query' => array('relation' => 'AND'));
         if ($league_id) {
             $args['tax_query'][] = array('taxonomy' => 'sp_league', 'field' => 'term_id', 'terms' => $league_id);
         }
         if ($div_id) {
             $args['tax_query'][] = array('taxonomy' => 'sp_season', 'field' => 'term_id', 'terms' => $div_id);
         }
         $args = apply_filters('sportspress_player_data_event_args', $args);
         $events = get_posts($args);
         // Event loop
         foreach ($events as $i => $event) {
             $results = (array) get_post_meta($event->ID, 'sp_results', true);
             $team_performance = (array) get_post_meta($event->ID, 'sp_players', true);
             $minutes = get_post_meta($event->ID, 'sp_minutes', true);
             if ($minutes === '') {
                 $minutes = get_option('sportspress_event_minutes', 90);
             }
             // Add all team performance
             foreach ($team_performance as $team_id => $players) {
                 if (is_array($players) && array_key_exists($this->ID, $players)) {
                     $player_performance = sp_array_value($players, $this->ID, array());
                     foreach ($player_performance as $key => $value) {
                         if ('outcome' == $key) {
                             // Increment events attended, played, and started
                             $totals['eventsattended']++;
                             $totals['eventsplayed']++;
                             $totals['eventsstarted']++;
                             $totals['eventminutes'] += $minutes;
                             // Convert to array
                             if (!is_array($value)) {
                                 $value = array($value);
                             }
                             foreach ($value as $outcome) {
                                 if ($outcome && $outcome != '-1') {
                                     // Increment outcome count
                                     if (array_key_exists($outcome, $totals)) {
                                         $totals[$outcome]++;
                                     }
                                     // Add to streak counter
                                     if ($streak['fire'] && ($streak['name'] == '' || $streak['name'] == $outcome)) {
                                         $streak['name'] = $outcome;
                                         $streak['count']++;
                                     } else {
                                         $streak['fire'] = 0;
                                     }
                                     // Add to last 5 counter if sum is less than 5
                                     if (array_key_exists($outcome, $last5) && array_sum($last5) < 5) {
                                         $last5[$outcome]++;
                                     }
                                     // Add to last 10 counter if sum is less than 10
                                     if (array_key_exists($outcome, $last10) && array_sum($last10) < 10) {
                                         $last10[$outcome]++;
                                     }
                                 }
                             }
                         } elseif (array_key_exists($key, $totals)) {
                             $totals[$key] += $value;
                         }
                     }
                     $team_results = sp_array_value($results, $team_id, array());
                     unset($results[$team_id]);
                     // Loop through home team
                     foreach ($team_results as $result_slug => $team_result) {
                         if ('outcome' == $result_slug) {
                             // Increment events attended
                             $totals['eventsattended']++;
                             // Continue with incrementing values if active in event
                             if (sp_array_value($player_performance, 'status') != 'sub' || sp_array_value($player_performance, 'sub', 0)) {
                                 $totals['eventsplayed']++;
                                 $totals['eventminutes'] += $minutes;
                                 if (sp_array_value($player_performance, 'status') == 'lineup') {
                                     $totals['eventsstarted']++;
                                 } elseif (sp_array_value($player_performance, 'status') == 'sub' && sp_array_value($player_performance, 'sub', 0)) {
                                     $totals['eventssubbed']++;
                                 }
                                 $value = $team_result;
                                 // Convert to array
                                 if (!is_array($value)) {
                                     $value = array($value);
                                 }
                                 foreach ($value as $outcome) {
                                     if ($outcome && $outcome != '-1') {
                                         // Increment outcome count
                                         if (array_key_exists($outcome, $totals)) {
                                             $totals[$outcome]++;
                                         }
                                         // Add to streak counter
                                         if ($streak['fire'] && ($streak['name'] == '' || $streak['name'] == $outcome)) {
                                             $streak['name'] = $outcome;
                                             $streak['count']++;
                                         } else {
                                             $streak['fire'] = 0;
                                         }
                                         // Add to last 5 counter if sum is less than 5
                                         if (array_key_exists($outcome, $last5) && array_sum($last5) < 5) {
                                             $last5[$outcome]++;
                                         }
                                         // Add to last 10 counter if sum is less than 10
                                         if (array_key_exists($outcome, $last10) && array_sum($last10) < 10) {
                                             $last10[$outcome]++;
                                         }
                                     }
                                 }
                             }
                         } else {
                             // Add to total
                             $value = sp_array_value($totals, $result_slug . 'for', 0);
                             $value += $team_result;
                             $totals[$result_slug . 'for'] = $value;
                             // Add subset
                             $totals[$result_slug . 'for' . ($i + 1)] = $team_result;
                         }
                     }
                     // Loop through away teams
                     if (sizeof($results)) {
                         foreach ($results as $team_results) {
                             unset($team_results['outcome']);
                             foreach ($team_results as $result_slug => $team_result) {
                                 // Add to total
                                 $value = sp_array_value($totals, $result_slug . 'against', 0);
                                 $value += $team_result;
                                 $totals[$result_slug . 'against'] = $value;
                                 // Add subset
                                 $totals[$result_slug . 'against' . ($i + 1)] = $team_result;
                             }
                         }
                     }
                 }
             }
             $i++;
         }
         // Compile streaks counter and add to totals
         $args = array('name' => $streak['name'], 'post_type' => 'sp_outcome', 'post_status' => 'publish', 'posts_per_page' => 1);
         $outcomes = get_posts($args);
         if ($outcomes) {
             $outcome = reset($outcomes);
             $abbreviation = sp_get_abbreviation($outcome->ID);
             if (empty($abbreviation)) {
                 $abbreviation = strtoupper(substr($outcome->post_title, 0, 1));
             }
             $totals['streak'] = $abbreviation . $streak['count'];
         }
         // Add last counters to totals
         $totals['last5'] = $last5;
         $totals['last10'] = $last10;
         // Add metrics to totals
         $totals = array_merge($metrics, $totals);
         // Generate array of placeholder values for each league
         $placeholders[$div_id] = array();
         foreach ($equations as $key => $value) {
             $placeholders[$div_id][$key] = sp_solve($value['equation'], $totals, $value['precision']);
         }
         foreach ($performance_labels as $key => $label) {
             $placeholders[$div_id][$key] = sp_array_value($totals, $key, 0);
         }
     }
     // Get labels by section
     $args = array('post_type' => 'sp_statistic', 'numberposts' => 100, 'posts_per_page' => 100, 'orderby' => 'menu_order', 'order' => 'ASC');
     $posts = get_posts($args);
     $stats = array();
     foreach ($posts as $post) {
         if (-1 === $section) {
             $stats[$post->post_name] = $post->post_title;
         } else {
             $post_section = get_post_meta($post->ID, 'sp_section', true);
             if ('' === $post_section) {
                 $post_section = -1;
             }
             if ($admin) {
                 if (1 == $section) {
                     if (1 == $post_section) {
                         $stats[$post->post_name] = $post->post_title;
                     }
                 } else {
                     if (1 != $post_section) {
                         $stats[$post->post_name] = $post->post_title;
                     }
                 }
             } elseif ($section == $post_section || -1 == $post_section) {
                 $stats[$post->post_name] = $post->post_title;
             }
         }
     }
     // Merge the data and placeholders arrays
     $merged = array();
     foreach ($placeholders as $season_id => $season_data) {
         $team_id = sp_array_value($leagues, $season_id, -1);
         if (-1 == $team_id) {
             continue;
         }
         $season_name = sp_array_value($season_names, $season_id, '&nbsp;');
         if ($team_id) {
             $team_name = sp_get_team_name($team_id, $abbreviate_teams);
             if (get_option('sportspress_link_teams', 'no') == 'yes' ? true : false) {
                 $team_permalink = get_permalink($team_id);
                 $team_name = '<a href="' . $team_permalink . '">' . $team_name . '</a>';
             }
         } else {
             $team_name = __('Total', 'sportspress');
         }
         // Add season name to row
         $merged[$season_id] = array('name' => $season_name, 'team' => $team_name);
         foreach ($season_data as $key => $value) {
             // Use static data if key exists and value is not empty, else use placeholder
             if (array_key_exists($season_id, $data) && array_key_exists($key, $data[$season_id]) && $data[$season_id][$key] != '') {
                 $value = $data[$season_id][$key];
             }
             $merged[$season_id][$key] = $value;
         }
     }
     $columns = array_merge($performance_labels, $stats);
     if ($admin) {
         $labels = array();
         if (is_array($usecolumns)) {
             foreach ($usecolumns as $key) {
                 if ($key == 'team') {
                     $labels[$key] = __('Team', 'sportspress');
                 } elseif (array_key_exists($key, $columns)) {
                     $labels[$key] = $columns[$key];
                 }
             }
         }
         return array($labels, $data, $placeholders, $merged, $leagues, $has_checkboxes);
     } else {
         if (is_array($usecolumns)) {
             foreach ($columns as $key => $label) {
                 if (!in_array($key, $usecolumns)) {
                     unset($columns[$key]);
                 }
             }
         }
         $labels = array();
         if ('no' === get_option('sportspress_player_show_statistics', 'yes')) {
             $merged = array();
         } else {
             $labels['name'] = __('Season', 'sportspress');
             $labels['team'] = __('Team', 'sportspress');
         }
         if ('yes' === get_option('sportspress_player_show_total', 'no')) {
             // Get totals calculated from events
             $total_placeholders = sp_array_value($placeholders, 0, array());
             // Get totals as entered directly and filter out the empty values
             $total_data = sp_array_value($data, 0, array());
             // Get totals of all seasons as entered manually
             $totals = array();
             foreach ($merged as $season => $stats) {
                 foreach ($stats as $key => $value) {
                     $totals[$key] = sp_array_value($totals, $key, 0) + $value;
                 }
             }
             // Merge with direct values
             foreach ($total_data as $key => $value) {
                 if ('' === $value) {
                     $total_data[$key] = sp_array_value($totals, $key, 0);
                 }
             }
             // Then merge with placeholder values
             $total = array_merge($total_placeholders, $total_data);
             $merged[-1] = $total;
             $merged[-1]['name'] = __('Total', 'sportspress');
         }
         $merged[0] = array_merge($labels, $columns);
         return $merged;
     }
 }
                        $s++;
                    }
                } else {
                    if (0 < $team_id) {
                        $data = sp_array_combine($players, sp_array_value($performance, $team_id, array()));
                    } elseif (0 == $team_id) {
                        $data = array();
                        foreach ($players as $player_id) {
                            if (isset($performance[$player_id][$player_id])) {
                                $data[$player_id] = $performance[$player_id][$player_id];
                            }
                        }
                    } else {
                        $data = sp_array_value(array_values($performance), $index);
                    }
                    sp_get_template('event-performance-table.php', array('scrollable' => $scrollable, 'sortable' => $sortable, 'show_players' => $show_team_players, 'show_numbers' => $show_numbers, 'show_minutes' => $show_minutes, 'show_total' => $show_total, 'caption' => $team_id ? sp_get_team_name($team_id, $abbreviate_teams) : null, 'labels' => $labels, 'formats' => $formats, 'mode' => $mode, 'data' => $data, 'event' => $event, 'link_posts' => $link_posts, 'performance_ids' => isset($performance_ids) ? $performance_ids : null, 'primary' => 'primary' == $total ? $primary : null));
                }
            }
        }
        if ($show_staff) {
            sp_get_template('event-staff.php', array('id' => $id, 'index' => $index));
        }
        ?>
		<?php 
    }
    do_action('sportspress_event_performance');
    $content = ob_get_clean();
    $content = trim($content);
    if (!empty($content)) {
        ?>
		<div class="sp-event-performance-tables sp-event-performance-teams">