class MatchFormCreator extends ModelFormCreator

Form creator for matches

Methods

void
fill(Form $form, $match)

Fill the form with a model's data

void
update(Form $form, $match)

Update a model based on a form's data

enter(Form $form)

Enter the data of a valid form into the database

Details

at line line 81
void fill(Form $form, $match)

Fill the form with a model's data

Override this in your form

Parameters

Form $form The form to fill
$match

Return Value

void

at line line 106
void update(Form $form, $match)

Update a model based on a form's data

Override this in your form

Parameters

Form $form The form to use
$match

Return Value

void

at line line 148
Model enter(Form $form)

Enter the data of a valid form into the database

Parameters

Form $form The submitted form

Return Value

Model