Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

Archive /

Our old forums are still available as a read-only archive.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo

ModelAdmin in the trunk?


Go to End


4 Posts   2105 Views

Avatar
adiwidjaja

Community Member, 14 Posts

18 September 2008 at 6:38pm

Edited: 18/09/2008 8:14pm

Hi all,

I want to use the new ModelAdmin functionality. Are you sure it works in the trunk as sminnee describes in http://doc.silverstripe.com/doku.php?id=modeladmin ? Using the code on that page I end up with an empty screen on the url admin/catalog.

Should I use the sapphire branch?

Cheers,

Andy

Avatar
Willr

Forum Moderator, 5523 Posts

19 September 2008 at 2:22pm

ModelAdmin is all on trunk. To make it work you need cms/ sapphire/ and jsparty/ all in the latest trunk releases. If you have a blank screen check your PHP error log on your server and see what the problem is

Avatar
adiwidjaja

Community Member, 14 Posts

19 September 2008 at 7:47pm

Ok, I had a very stupid error in my code but there is also a very small error in the documentation, it should be:

class MyCatalogAdmin extends ModelAdmin {
   
   protected static $managed_models = array(
      'Product'
   );
 
}

Without the "protected" it didn't work.

Avatar
Willr

Forum Moderator, 5523 Posts

19 September 2008 at 7:55pm

you might like to update the documentation. Thanks for pointing this out!