arillo/silverstripe-gridfield-is-published

Extension for versioned dataobjects to visually show if they are published in the gridfield

Maintainers

Package info

github.com/arillo/silverstripe-gridfield-is-published

Type:silverstripe-module

pkg:composer/arillo/silverstripe-gridfield-is-published

Statistics

Installs: 159

Dependents: 0

Suggesters: 0

Stars: 2

Open Issues: 0

dev-master 2016-10-25 09:50 UTC

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'
	);

	...
}