Ejemplo n.º 1
0
 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;
 }
Ejemplo n.º 2
0
 public function generate_csv()
 {
     $flights = flight::get_all(['p.pid AS p_pid', 'p.name AS p_name', 'c.title AS c_title', 'g.class AS g_class', 'g.name AS g_name', 'score', 'defined', 'lid'], ['join' => ['glider g' => 'flight.gid=g.gid', 'pilot p' => 'p.pid = flight.pid', 'club c' => 'c.cid=flight.cid'], 'where' => '`delayed`=0 AND personal=0 AND score>10 AND season = 2012']);
     $array = new table_array();
     $flights->iterate(function (flight $flight) use(&$array) {
         if (isset($array[$flight->p_pid])) {
             $array[$flight->p_pid]->add_flight($flight);
         } else {
             $array[$flight->p_pid] = new pilot_official();
             $array[$flight->p_pid]->set_from_flight($flight, 6, 0);
             $array[$flight->p_pid]->output_function = 'csv';
         }
     });
     $array->uasort(['\\module\\tables\\object\\league_table', 'cmp']);
     $class1 = $class5 = 1;
     echo node::create('pre', [], '
     Pos ,Name ,Glider ,Club ,Best ,Second ,Third ,Forth ,Fifth ,Sixth ,Total' . "\n" . $array->iterate_return(function (scorable $pilot) use(&$class1, &$class5) {
         if ($pilot->class == 1) {
             $class1++;
             return $pilot->output($class1);
         } else {
             $class5++;
             return $pilot->output($class5);
         }
     }));
     die;
 }