burnbright / silverstripe-componenteditor
Front-end component (DataObject) create/edit/delete control.
Installs: 29
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 3
Forks: 1
Open Issues: 1
Type:silverstripe-module
Requires
- silverstripe/framework: ~3.1
This package is auto-updated.
Last update: 2024-10-24 20:17:59 UTC
README
A light-weight control for editing a single object, using it's getFrontEndFields
. Useful for one-to-one (has_one, belongs_to) relationships.
A new object will be created on first save. Subsequently the form will be populated with the object data, and saved back to that object.
Usage
Update your DataObject as follows:
- Implement/extend the
getFrontEndFields
method to control form fields. - Implement/extend the
canCreate
,canEdit
, andcanDelete
functions to control access. see docs.
Add the EditComponentForm
inside your controller class:
<?php public function Form() { //returns an empty object, if not aready present $testimonial = $this->owner->getMember()->Testimonial(); return new EditComponentForm($this->owner, "Form", $testimonial); } ?>
Troubleshooting / future work
Make sure you implement the canCreate
and canEdit
and canDelete
functions on your dataobject.
Currently works best if your object (eg Testimonial) contains the has_one relationship, if you are wanting to join to the parent (eg Member). This is because the EditComponentForm only saves the object you are working on, rather than the parent. Swap your has_one, with your belongs_to to resolve saving issues. Alternatively, save and link the new object before passing to the form (could end up creating a lot of empty objects). There is potential for this module to be upgraded to handle has_one relationships, perhaps by introducing a callback, or requiring that parent object be passed in.