Esempio n. 1
0
 public static function getTournamentValuesBy($column, $type = null, $value = null)
 {
     // Returns the $column of Tournaments whose $type field has value $value
     $tournamentRows = TournamentsDB::getTournamentRowSetsBy($type, $value);
     return TournamentsDB::getTournamentValues($tournamentRows, $column);
 }