mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
API CHANGE #4036 ajshort: Add the ability to set the keys of ModelAdmin::$managed_models to alternate titles for the tabs.
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@76999 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
405392f7f7
commit
7d00afce59
@ -193,7 +193,7 @@ abstract class ModelAdmin extends LeftAndMain {
|
|||||||
|
|
||||||
foreach($models as $title => $class) {
|
foreach($models as $title => $class) {
|
||||||
$forms->push(new ArrayData(array (
|
$forms->push(new ArrayData(array (
|
||||||
'Title' => (is_string($title) ? $title : singleton($modelClass)->singular_name()),
|
'Title' => (is_string($title) ? $title : singleton($class)->singular_name()),
|
||||||
'ClassName' => $class,
|
'ClassName' => $class,
|
||||||
'Content' => $this->$class()->getModelSidebar()
|
'Content' => $this->$class()->getModelSidebar()
|
||||||
)));
|
)));
|
||||||
|
Loading…
Reference in New Issue
Block a user