Add option to choose individual/team mode per event

This commit is contained in:
Brian Miyaji
2017-03-16 13:49:51 +11:00
parent 6078dcd534
commit b6f79cec13
25 changed files with 253 additions and 326 deletions

View File

@@ -424,6 +424,13 @@ class SP_Install {
update_option( 'sportspress_completed_setup', 1 );
update_option( 'sportspress_registration_name_inputs', 'no' );
update_option( 'sportspress_registration_add_player', 'no' );
$individual_mode = get_option( 'sportspress_load_individual_mode_module', 'no' );
if ( 'yes' === $individual_mode ) {
update_option( 'sportspress_mode', 'player' );
} else {
update_option( 'sportspress_mode', 'team' );
}
}
}