Sign up to our newsletter to receive updates on Winter CMS releases,
new features in the works, and much more.
We'll never spam or give
this address away.
Triggered in: Backend\Widgets\Form.php
Called before the form fields are defined
Example usage:
Event::listen('backend.form.extendFieldsBefore', function ((\Backend\Widgets\Form) $formWidget) {
// You should always check to see if you're extending correct model/controller
if (!$formWidget->model instanceof \Foo\Example\Models\Bar) {
return;
}
// Here you can't use addFields() because it will throw you an exception because form is not yet created
// and it does not have tabs and fields
// For this example we will pretend that we want to add a new field named example_field
$formWidget->fields['example_field'] = [
'label' => 'Example field',
'comment' => 'Your example field',
'type' => 'text',
];
});
Or
$formWidget->bindEvent('form.extendFieldsBefore', function () use ((\Backend\Widgets\Form $formWidget)) {
// You should always check to see if you're extending correct model/controller
if (!$formWidget->model instanceof \Foo\Example\Models\Bar) {
return;
}
// Here you can't use addFields() because it will throw you an exception because form is not yet created
// and it does not have tabs and fields
// For this example we will pretend that we want to add a new field named example_field
$formWidget->fields['example_field'] = [
'label' => 'Example field',
'comment' => 'Your example field',
'type' => 'text',
];
});
Sign up to our newsletter to receive updates on Winter CMS releases,
new features in the works, and much more.
We'll never spam or give
this address away.
Published May 2, 2022
v1.2 with Laravel 9 Support Now Available For Testing!
Released February 15, 2022
11 UX/UI Improvements, 12 API Changes, 12 Bug Fixes, 6 Security Improvements, 8 Translation Improvements, 5 Community Improvements, 1 Dependency