I want to place some fields in the Security tab under Members before the Search and Member List section. They get added the the Group table and then appear after the Member List section. Here is my code so far:
class GroupDecorator extends DataObjectDecorator
{
function extraStatics()
{
return array('db' => array(
'Email' => 'Varchar(255)',
'Website' => 'Varchar(255)'));
}
public function updateCMSFields(Fieldset & $fields)
{
$fields->addFieldToTab('Root.Members', new TextField('Email', 'Email'));
$fields->addFieldToTab('Root.Members', new TextField('Website', 'Website'));
return $fields;
}
}