silverstripe-frameworktest/code/TestModelAdmin.php

14 lines
216 B
PHP
Raw Normal View History

2008-10-03 00:48:55 +02:00
<?php
class TestModelAdmin extends ModelAdmin {
2013-03-26 11:44:04 +01:00
private static $url_segment = 'test';
private static $menu_title = 'Test ModelAdmin';
2010-01-26 10:02:35 +01:00
2013-03-26 11:44:04 +01:00
private static $managed_models = array(
"Company",
"Employee",
2008-10-03 00:48:55 +02:00
);
2010-01-26 10:02:35 +01:00
2008-10-03 00:48:55 +02:00
}
?>