silverstripe-frameworktest/code/TestModelAdmin.php

14 lines
199 B
PHP
Raw Normal View History

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