Volleyball point
-
Currents points in volleyball is
1) Points
2) Set Difference
3) Won Sets
4) Ballpoints Difference
5) BallpointsCan I change order to?
1) Points
2) Won sets
3) Ballpoints—
I change in leaguemanager/sports/volleyball.php but it doesn’t work
function rankTeams( $teams )
{
foreach ( $teams AS $key => $row ) {
$points[$key] = $row->points[‘plus’]+$row->add_points;
$won_sets[$key] = $row->sets[‘won’];
}array_multisort( $points, SORT_DESC, $won_sets, SORT_DESC, $teams );
return $teams;
}
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Volleyball point’ is closed to new replies.