function make_table(league_table $data) { $array = new table_array(); /* @var \object\flight $t */ foreach ($data->flights as $t) { /** @var pilot $class */ if ($data->options->split_classes && $t->class == 5) { $t->ClassID += 8000; } if (isset($array[$t->ClassID])) { $class = $array[$t->ClassID]; $class->add_flight($t); } else { $class = new $data->class(); $class->set_from_flight($t, $data->max_flights, $data->options->split_classes); $array[$t->ClassID] = $class; } } if (count($array) > 0) { $array->uasort(['\\module\\tables\\object\\league_table', 'cmp']); $class1 = 1; $class5 = 1; $html = node::create('div.table_wrapper', [], node::create('h3.heading', [], $data->Title) . ($data->options->show_top_4 ? $data->ShowTop4($data->WHERE) : '') . node::create('table.results.main', [], $data->write_table_header($data->max_flights, $data->class_primary_key) . $array->iterate_return(function (scorable $pilot) use(&$class1, &$class5) { if ($pilot->class == 1) { return $pilot->output($class1++); } else { return $pilot->output($class5++); } }))); } else { $html = node::create('table.main th.c', ['style' => 'width:663px'], 'No Flights to display'); } return $html; }
function make_table(league_table $data) { $pilots = 2000; if ($data->options->official) { $pilots = 4; } $pilots_array = new table_array(); /** @var \object\flight $flight */ foreach ($data->flights as $flight) { if (isset($pilots_array[$flight->ClassID . '.' . $flight->c_name])) { $pilots_array[$flight->ClassID . '.' . $flight->c_name]->add_flight($flight); } else { /** @var pilot $pilot */ $pilot = new $data->class(); $pilot->set_from_flight($flight, $data->max_flights, false); $pilots_array[$flight->ClassID . '.' . $flight->c_name] = $pilot; } } // Sort pilots by score. if ($pilots_array->count()) { $pilots_array->uasort(['\\module\\tables\\object\\league_table', 'cmp']); } else { return node::create('table.main thead tr th.c', ['style' => 'width:663px'], 'No Flights to display'); } $club_array = new table_array(); $pilots_array->iterate(function (scorable $pilot) use($data, $pilots, $club_array) { /** @var club $club */ if ($pilot->club) { if (isset($club_array[$pilot->club])) { $club = $club_array[$pilot->club]; $club->AddSub($pilot); } else { $club = new $data->SClass(); $club->set_from_pilot($pilot, $pilots); $club_array[$pilot->club] = $club; } } }); $club_array->uasort(['\\module\\tables\\object\\league_table', 'cmp']); $html = node::create('div.table_wrapper', [], node::create('h3.heading', [], $data->Title) . $club_array->iterate_return(function (club $club, $i) use($data) { return node::create('div.table_wrapper.inner', [], $club->writeClubSemiHead($i + 1) . node::create('table.results.main.flights_' . $data->max_flights, [], $data->write_table_header($data->max_flights, $data->class_primary_key) . $club->content)); })); return $html; }