silverstripe-frameworktest/code/TestModelAdmin.php

14 lines
192 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 ModelAdmin';
2010-01-26 10:02:35 +01:00
2013-03-19 09:44:39 +01:00
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
}
?>