Add ability to split players by team

This commit is contained in:
Brian Miyaji
2015-03-03 23:10:29 +11:00
parent 560d19d5cb
commit a06635e031

View File

@@ -233,10 +233,18 @@ class SP_Settings_Events extends SP_Settings_Page {
'checkboxgroup' => 'start',
),
array(
'desc' => __( 'Split players by team', 'sportspress' ),
'id' => 'sportspress_event_split_players_by_team',
'default' => 'yes',
'type' => 'checkbox',
'checkboxgroup' => '',
),
array(
'desc' => __( 'Split players by position', 'sportspress' ),
'id' => 'sportspress_event_split_players_by_position',
'default' => 'false',
'default' => 'no',
'type' => 'checkbox',
'checkboxgroup' => 'end',
),