silverstripe-framework/src/Forms/GridField/GridFieldConfig_RecordViewe...

22 lines
523 B
PHP

<?php
namespace SilverStripe\Forms\GridField;
/**
* Allows viewing readonly details of individual records.
*/
class GridFieldConfig_RecordViewer extends GridFieldConfig_Base
{
public function __construct($itemsPerPage = null)
{
parent::__construct($itemsPerPage);
$this->addComponent(GridFieldViewButton::create());
$this->addComponent(GridFieldDetailForm::create());
$this->removeComponentsByType(GridFieldFilterHeader::class);
$this->extend('updateConfig');
}
}