arillo / silverstripe-gridfield-is-published
Extension for versioned dataobjects to visually show if they are published in the gridfield
Installs: 159
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 8
Forks: 1
Open Issues: 0
Type:silverstripe-module
Requires
- silverstripe/framework: ~3.1
This package is auto-updated.
Last update: 2024-12-09 02:22:38 UTC
README
Extension for versioned dataobjects to visually show if they are published in the gridfield.
Just apply the extension to the dataobjects that you would like to visually show if they are published or not in the GridField.
<?php
class MyDataObject extends DataObject
{
...
private static $extensions = array(
'GridFieldIsPublishedExtension'
);
...
}