mirror of
https://github.com/silverstripe/silverstripe-frameworktest
synced 2024-10-22 11:06:02 +02:00
NEW Test class for GridField with limited number of items in the list
This commit is contained in:
parent
dd135c7d14
commit
f098a695db
19
code/fields/GridFieldTestNavigation.php
Normal file
19
code/fields/GridFieldTestNavigation.php
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace SilverStripe\FrameworkTest\Fields\Admin;
|
||||
|
||||
use SilverStripe\Admin\ModelAdmin;
|
||||
use SilverStripe\FrameworkTest\Model\Company;
|
||||
|
||||
class GridFieldTestNavigation extends ModelAdmin
|
||||
{
|
||||
private static string $url_segment = 'gridfield-test-navigation';
|
||||
private static string $menu_title = 'GridField Test Navigation';
|
||||
private static string $menu_icon_class = 'font-icon-block-banner';
|
||||
|
||||
private static array $managed_models = [
|
||||
Company::class,
|
||||
];
|
||||
|
||||
private static $page_length = 5;
|
||||
}
|
Loading…
Reference in New Issue
Block a user