Skip to content

Commit

Permalink
Merge branch '4' into 0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
GuySartorelli committed Aug 22, 2022
2 parents 334815c + 7bf069f commit 2721b8f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions code/fields/GridFieldTestNavigation.php
Original file line number Diff line number Diff line change
@@ -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;
}

0 comments on commit 2721b8f

Please sign in to comment.