mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
8dd644d25d
Namespace all templates Move difflib and BBCodeParser2 to thirdparty Remove deprecated API marked for removal in 4.0
72 lines
1.6 KiB
PHP
72 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace SilverStripe\Forms\GridField;
|
|
|
|
use SilverStripe\View\ArrayData;
|
|
use SilverStripe\View\SSViewer;
|
|
|
|
/**
|
|
* Adding this class to a {@link GridFieldConfig} of a {@link GridField} adds
|
|
* a footer bar to that field.
|
|
*
|
|
* The footer looks just like the {@link GridFieldPaginator} control, except
|
|
* without the pagination controls.
|
|
*
|
|
* It only display the "Viewing 1-8 of 8" status text and (optionally) a
|
|
* configurable status message.
|
|
*
|
|
* The purpose of this class is to have a footer that can round off
|
|
* {@link GridField} without having to use pagination.
|
|
*/
|
|
class GridFieldFooter implements GridField_HTMLProvider {
|
|
|
|
/**
|
|
* A message to display in the footer
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $message = null;
|
|
|
|
/**
|
|
* True to show record count
|
|
*
|
|
* @var bool
|
|
*/
|
|
protected $showrecordcount = false;
|
|
|
|
/**
|
|
*
|
|
* @param string $message A message to display in the footer
|
|
* @param bool $showrecordcount
|
|
*/
|
|
public function __construct($message = null, $showrecordcount = true) {
|
|
if($message) {
|
|
$this->message = $message;
|
|
}
|
|
$this->showrecordcount = $showrecordcount;
|
|
}
|
|
|
|
|
|
public function getHTMLFragments($gridField) {
|
|
$count = $gridField->getList()->count();
|
|
|
|
$forTemplate = new ArrayData(array(
|
|
'ShowRecordCount' => $this->showrecordcount,
|
|
'Message' => $this->message,
|
|
'FirstShownRecord' => 1,
|
|
'LastShownRecord' => $count,
|
|
'NumRecords' => $count
|
|
));
|
|
|
|
$template = SSViewer::get_templates_by_class($this, '', __CLASS__);
|
|
return array(
|
|
'footer' => $forTemplate->renderWith(
|
|
$template,
|
|
array(
|
|
'Colspan' => count($gridField->getColumns())
|
|
)
|
|
)
|
|
);
|
|
}
|
|
}
|