CMSEditLinkExtension
class CMSEditLinkExtension extends Extension (View source)
An extension that automatically generates a CMS edit link for DataObjects even if they are canonically edited in some nested GridField.
Designed to be used in conjunction with the CMSPreviewable interface.
For nested relations (e.g. a DataObject managed in a GridField of another DataObject)
you can apply this extension to both the parent and the child object and the links
will chain down the nested GridField
s to the root cms_edit_owner.
You must set a cms_edit_owner config variable which defines the cms edit owner for this class. e.g. set this to a LeftAndMain class: private static string cms_edit_owner = MyModelAdmin::class; or to a has_one relation: private static string cms_edit_owner = 'Parent';
Note that the cms_edit_owner must implement a getCMSEditLinkForManagedDataObject() method.
If the cms_edit_owner is a has_one relation, the class on the other end of the relation must have a CMSEditLink() method.
Properties
protected | object | $owner | The object this extension is applied to. |
from Extension |
Methods
Called when this extension is added to a particular class
Temporarily modify the owner. The original owner is ensured to be restored
Clear the current owner, and restore extension to the state prior to the last setOwner()
Helper method to strip eval'ed arguments from a string that's passed to DataObject::$extensions or Object::add_extension().
Get the ModelAdmin, LeftAndMain, or DataObject which owns this object for CMS editing purposes.
Get the link for editing an object from the CMS edit form of this object.
Details
__construct()
No description
static
add_to_class(string $class, string $extensionClass, mixed $args = null)
Called when this extension is added to a particular class
setOwner(object $owner)
Set the owner of this extension.
mixed
withOwner(mixed $owner, callable $callback, array $args = [])
Temporarily modify the owner. The original owner is ensured to be restored
clearOwner()
Clear the current owner, and restore extension to the state prior to the last setOwner()
object
getOwner()
Returns the owner of this extension.
static string
get_classname_without_arguments(string $extensionStr)
Helper method to strip eval'ed arguments from a string that's passed to DataObject::$extensions or Object::add_extension().
LeftAndMain|DataObject|null
getCMSEditOwner()
Get the ModelAdmin, LeftAndMain, or DataObject which owns this object for CMS editing purposes.
string
getCMSEditLinkForManagedDataObject(DataObject $obj, string $reciprocalRelation)
Get the link for editing an object from the CMS edit form of this object.
string
CMSEditLink()
Get a link to edit this DataObject in the CMS.