Theoretisch ist dies möglich.
Haben wir auf unserer Page auch stark abgewandelt:
Standard:
Standings boxes
E.g.:
$settings = array(
array(
'type' => 'league', # This sets the node to be a LEAGUE.
'id' => 2, # LEAGUE with ID = 2
'box_ID' => 2, # Display as 2nd box when ordering the boxes
'infocus' => false, # If true a random team from the standings will be selected and its top players displayed.
'HRS' => 1, # Ranking rule for standings
'title' => 'Standings', # Box title
'length' => 6, # Number of entries in box
'fields' => array('Name' => 'name', 'PTS' => 'pts', 'TV' => 'tv', 'CAS' => 'cas', 'W' => 'won', 'L' => 'lost', 'D' => 'draw', 'GF' => 'gf', 'GA' => 'ga',),
),
);
Letzte Zeile kann man erweitern um:
mvp
cp
td
intcpt
bh
si
ki
cas (sum of PLAYER cas)
tdcas ("td" + "cas")
tcasf (total TEAM cas by this team)
tcasa (total TEAM cas against this team)
tcdiff (equals to the arithmetic value of "tcasf" - "tcasa")
gf (total score made by this team)
ga (total score made against this team)
sdiff (equals to the arithmetic value of "gf" - "ga")
played
won
lost
draw
win_pct
elo
smp (sportsmanship points)
pts (points)
Ihr braucht "played". Sicherheitskopie machen oder mutig sein.