micschk / silverstripe-rightsidebar
Allows adding a right-hand sidebar in the CMS to hold options/fields for the currently edited record
Installs: 18 422
Dependents: 2
Suggesters: 0
Security: 0
Stars: 11
Watchers: 7
Forks: 4
Open Issues: 0
Language:CSS
Type:silverstripe-vendormodule
Requires
- silverstripe/cms: ~4.0
- silverstripe/framework: ~4.0
- silverstripe/vendor-plugin: ^1.0
This package is not auto-updated.
Last update: 2024-10-26 18:17:18 UTC
README
Requirements
- SilverStripe CMS & Framework 4+
Overview
Allows adding a right-hand sidebar in the CMS to hold options/fields for the currently edited record. Abstracted out from the Silverstripe Blog module for use on other pages as well (blog module by ao. Michael Strong/Silverstripe)
RightSidebar behaves like a tab (like tab it extends CompositeField).
Add use before class
declaration:
use Restruct\RightSidebar\RightSidebar;
Usage (in getCMSfields):
$fields->addFieldsToTab('Root.Main', RightSidebar::create('Options')); $fields->addFieldsToTab('Root.Main.Options', array( $publishDate = DatetimeField::create("PublishDate", "Publish Date"), TextField::create('Author') )); // Add to Main tab (fixed width) and render an outer template to deal with our custom layout $fields->addFieldsToTab('Root.Main', RightSidebar::create('Options')); $fields->fieldByName('Root')->setTemplate('Restruct\RightSidebar\Forms\RightSidebarInner'); // OR: Add it full-screen (collapsible) and render an outer template to deal with our custom layout $fields->insertBefore(RightSidebar::create('Options'), 'Root'); $fields->fieldByName('Root')->setTemplate('Restruct\RightSidebar\Forms\RightSidebar');