2012-09-25 05:55:59 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GridFieldPage displays a simple current page count summary.
|
|
|
|
* E.g. "View 1 - 15 of 32"
|
|
|
|
*
|
|
|
|
* Depends on GridFieldPaginator being added to the same gridfield
|
|
|
|
*
|
|
|
|
* @package framework
|
|
|
|
* @subpackage fields-relational
|
|
|
|
*/
|
|
|
|
class GridFieldPageCount implements GridField_HTMLProvider {
|
|
|
|
/**
|
|
|
|
* @var string placement indicator for this control
|
|
|
|
*/
|
|
|
|
protected $targetFragment;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Which template to use for rendering
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $itemClass = 'GridFieldPageCount';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $targetFrament The fragment indicating the placement of this page count
|
|
|
|
*/
|
|
|
|
public function __construct($targetFragment = 'before') {
|
|
|
|
$this->targetFragment = $targetFragment;
|
|
|
|
}
|
2012-09-30 23:47:35 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Flag indicating whether or not this control should throw an error if a
|
|
|
|
* {@link GridFieldPaginator} is not present on the same {@link GridField}
|
|
|
|
*
|
|
|
|
* @var boolean
|
|
|
|
*/
|
|
|
|
public static $require_paginator = true;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieves an instance of a GridFieldPaginator attached to the same control
|
|
|
|
* @param GridField $gridField The parent gridfield
|
|
|
|
* @return GridFieldPaginator The attached GridFieldPaginator, if found.
|
|
|
|
* @throws LogicException
|
|
|
|
*/
|
|
|
|
protected function getPaginator($gridField) {
|
|
|
|
$paginator = $gridField->getConfig()->getComponentByType('GridFieldPaginator');
|
|
|
|
|
|
|
|
if(!$paginator && self::$require_paginator) {
|
|
|
|
throw new LogicException(
|
|
|
|
get_class($this) . " relies on a GridFieldPaginator to be added " .
|
|
|
|
"to the same GridField, but none are present."
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $paginator;
|
|
|
|
}
|
2012-09-25 05:55:59 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param GridField $gridField
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getHTMLFragments($gridField) {
|
|
|
|
|
|
|
|
// Retrieve paging parameters from the directing paginator component
|
2012-09-30 23:47:35 +02:00
|
|
|
$paginator = $this->getPaginator($gridField);
|
2012-09-25 05:55:59 +02:00
|
|
|
if ($paginator && ($forTemplate = $paginator->getTemplateParameters($gridField))) {
|
|
|
|
return array(
|
|
|
|
$this->targetFragment => $forTemplate->renderWith($this->itemClass)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|