Silverstripe 3.2: How to export db fields of only one Dataobject in a CSV file?

604 Views Asked by At

I know there is a GridFieldExportButton which exports all the data of a GridField. But what I want is a custom Button which exports all the $db fields (ore just a few of them) of only ONE DataObject in a CSV file and download it. So I want this button in the edit area of this one DataObject and not for the GridField which shows all data objects.

I have already the button, now I need the right function. Can somebody help me?

1

There are 1 best solutions below

0
On

You can change the fields exported for any DataObject in ModelAdmin with the following:

ModelAdmin:

class MyModelAdmin extends ModelAdmin {

    ...

    static $managed_models = array(
        'MyDataObject'
    );

    ...

    public function getExportFields() {
        $modelClass = singleton($this->modelClass);

        return $modelClass->hasMethod('getExportFields')
            ? $modelClass->getExportFields()
            : $modelClass->summaryFields();
    }

    ...
}

MyDataObject:

class MyDataObject extends DataObject {

    ...

    public function getExportFields() {
        $exportFields = array(
            //Add all "db" fields here
        );
        return $exportFields;
    }

    ...
}

If you wish for the export to be attached to a button else where I would suggest that you change the button to link to the ModelAdmin export CSV link