mirror of
https://github.com/silverstripe/silverstripe-comments
synced 2024-10-22 11:05:49 +02:00
1900ab14b5
Enable comment moderation per-page
33 lines
877 B
PHP
33 lines
877 B
PHP
<?php
|
|
|
|
class CommentsGridFieldConfig extends GridFieldConfig_RecordEditor {
|
|
public function __construct($itemsPerPage = 25) {
|
|
parent::__construct($itemsPerPage);
|
|
|
|
$this->addComponent(new GridFieldExportButton());
|
|
|
|
// Format column
|
|
$columns = $this->getComponentByType('GridFieldDataColumns');
|
|
$columns->setFieldFormatting(array(
|
|
'ParentTitle' => function($value, &$item) {
|
|
return sprintf(
|
|
'<a href="%s" class="cms-panel-link external-link action" target="_blank">%s</a>',
|
|
Convert::raw2xml($item->Link()),
|
|
Convert::raw2xml($value)
|
|
);
|
|
}
|
|
));
|
|
|
|
// Add bulk option
|
|
$manager = new GridFieldBulkManager();
|
|
$manager->addBulkAction(
|
|
'markAsSpam', 'Mark as spam', 'CommentsGridFieldBulkAction_MarkAsSpam',
|
|
array(
|
|
'isAjax' => true,
|
|
'icon' => 'delete',
|
|
'isDestructive' => true
|
|
)
|
|
);
|
|
$this->addComponent($manager);
|
|
}
|
|
} |