silverstripe-frameworktest/code/TestModelAdmin.php

16 lines
220 B
PHP
Raw Normal View History

2008-10-03 00:48:55 +02:00
<?php
class TestModelAdmin extends ModelAdmin {
2010-01-26 10:02:35 +01:00
static $url_segment = 'test';
static $menu_title = 'Test MdAdm';
2009-05-15 03:43:04 +02:00
public static $managed_models = array(
2008-10-03 00:48:55 +02:00
"Client",
"Contact",
"Project",
"Developer",
);
2010-01-26 10:02:35 +01:00
2008-10-03 00:48:55 +02:00
}
?>