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.

Forum Module /

Discuss the Forum Module.

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

custom getForumFields method


Go to End


1278 Views

Avatar
wildflower1975

Community Member, 63 Posts

18 February 2010 at 4:40pm

Edited: 18/02/2010 5:04pm

I've followed the instructions in the wiki to create a separate getForumFields method in my own class 'Role' that extends the DataObjectDecorator and included the DataObject::add_extension('Member', 'CustomForumRole');

statement in my config.php file but when i go to

http://localhost/silverstripe/ForumMemberProfile/register

the form always shows the fields stated in the getForumFields method from ForumMemberProfile.php

I can alter the fields using updateForumFields in my CustomForumRole.php but I would like more control on the layout and order of the fields that update can give. (I want to add address details etc to the form)

I don't want to be hacking at the Forum module code so i can upgrade it later without having to redo the Hacks.

I'm not sure i can explicitly state a custom template to use either like I can with my own forms.

thanks

P.S

actually insertBefore and insertAfter work quite well in the updateForumFields method thus:

$fields->insertAfter($PostCode,'CityPublic');
$fields->insertBefore($SuburbPublic,'CityPublic');

guess I'll have to style it with CSS in the end