milkyway / silverstripe-hasonecompositefield
Save has_one relationships directly from the parent record form
Installs: 29
Dependents: 0
Suggesters: 0
Security: 0
Stars: 7
Watchers: 2
Forks: 1
Open Issues: 4
Type:silverstripe-module
Requires
- silverstripe/framework: ~3.1
This package is not auto-updated.
Last update: 2022-02-01 12:29:07 UTC
README
This module allows you to add and edit a has_one directly from within the parent record form, made to look as if it is part of the parent record form.
I haven't tested it with GridField yet (haven't needed to). Would like to hear if it works, but I'm 40/60 sure it won't work as is.
Requirements
- SilverStripe 3.1
Author
- Mellisa Hankins [mell@milkywaymultimedia.com.au]
Install using composer
composer require milkyway/silverstripe-hasonecompositefield:*
Example Code
$relField = HasOneCompositeField::create('ContentBlock', 'Content Block', $this->ContentBlock(), $fields = null);
If no fields are defined, the field will try to find a getHasOneCMSFields method on the passed in record, otherwise it will fall back to getCMSFields.
Note: This will save the record if it does not exist yet when the form is saved. At the moment, there is no way to delete the record, but there are alernative modules which offer that solution if you need it.