restruct / silverstripe-gridfieldsitetreebuttons
Modifies GridFields & GridField detail forms to use standard page edit form (with versioning, history & settings). Simple alternative for versionedgridfield.
Installs: 11
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 0
Open Issues: 0
Type:silverstripe-vendormodule
Requires
Suggests
- restruct/silverstripe-excludechildren: Hide subpages from sitetree (manage them from a gridfield instead)
This package is auto-updated.
Last update: 2024-10-12 17:35:57 UTC
README
Modifies GridFields & GridField detail forms to use standard page edit form (with versioning, history & settings).
Best used in combination with:
Or use/subclass the preconfigured GridfieldPages module, which contains both the excludechildren module and this sitetreebuttons module:
Screenshot
Manage (add & edit) SiteTree items from a GridField:
Usage
In GridFieldConfig, replace GridFieldAddNewButton('toolbar-header-right') with GridFieldAddNewSiteTreeItemButton('toolbar-header-right') and new GridFieldDetailForm() with GridFieldEditSiteTreeItemButton()
Like this:
$gfconf = GridFieldConfig_RecordEditor::create();
$gfconf->removeComponentsByType('GridFieldAddNewButton');
$gfconf->addComponent(new GridFieldAddNewSiteTreeItemButton('toolbar-header-right'));
$gfconf->removeComponentsByType('GridFieldAddNewButton');
$gfconf->addComponent(new GridFieldEditSiteTreeItemButton());
Requirements
SilverStripe 4.0 or higher
Pro tip
Use/subclass the prefabricated GridfieldPages module as a all-in-one base: