mirror of
https://github.com/silverstripe/silverstripe-frameworktest
synced 2024-10-22 11:06:02 +02:00
16 lines
220 B
PHP
16 lines
220 B
PHP
<?php
|
|
|
|
class TestModelAdmin extends ModelAdmin {
|
|
static $url_segment = 'test';
|
|
static $menu_title = 'Test MdAdm';
|
|
|
|
public static $managed_models = array(
|
|
"Client",
|
|
"Contact",
|
|
"Project",
|
|
"Developer",
|
|
);
|
|
|
|
}
|
|
|
|
?>
|