silverstripe-frameworktest/code/TestModelAdmin.php

14 lines
199 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
2009-05-15 03:43:04 +02:00
public 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
}
?>