2017 © Pedro Peláez
 

silverstripe-module silverstripe-componenteditor

Front-end component (DataObject) create/edit/delete control.

image

burnbright/silverstripe-componenteditor

Front-end component (DataObject) create/edit/delete control.

  • Sunday, February 21, 2016
  • by jedateach
  • Repository
  • 1 Watchers
  • 3 Stars
  • 16 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 1 Open issues
  • 1 Versions
  • 7 % Grown

The README.md

SilverStripe Component Editor

A light-weight control for editing a single object, using it's getFrontEndFields. Useful for one-to-one (has_one, belongs_to) relationships., (*1)

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., (*2)

Usage

Update your DataObject as follows:, (*3)

  • Implement/extend the getFrontEndFields method to control form fields.
  • Implement/extend the canCreate, canEdit, and canDelete functions to control access. see docs.

Add the EditComponentForm inside your controller class:, (*4)

<?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., (*5)

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., (*6)

The Versions

21/02 2016

dev-master

9999999-dev

Front-end component (DataObject) create/edit/delete control.

  Sources   Download

The Requires

 

component frontend editor silverstripe