mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
22 lines
483 B
PHP
22 lines
483 B
PHP
<?php
|
|
|
|
/**
|
|
* GridField config necessary for managing a SiteTree object.
|
|
*
|
|
* @package silverstripe
|
|
* @subpackage blog
|
|
*/
|
|
class GridFieldConfig_BlogPost extends GridFieldConfig_Lumberjack
|
|
{
|
|
/**
|
|
* @param null|int $itemsPerPage
|
|
*/
|
|
public function __construct($itemsPerPage = null)
|
|
{
|
|
parent::__construct($itemsPerPage);
|
|
|
|
$this->removeComponentsByType('GridFieldSiteTreeState');
|
|
$this->addComponent(new GridFieldBlogPostState());
|
|
}
|
|
}
|