arillo / silverstripe-gridfield-is-published
Extension for versioned dataobjects to visually show if they are published in the gridfield
Package info
github.com/arillo/silverstripe-gridfield-is-published
Type:silverstripe-module
pkg:composer/arillo/silverstripe-gridfield-is-published
dev-master
2016-10-25 09:50 UTC
Requires
- silverstripe/framework: ~3.1
This package is auto-updated.
Last update: 2026-03-09 04:51:24 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'
);
...
}