6 users online. Create an account or sign in to join them.Users
Add an extra fieldset in the author screen
This is an open discussion with 1 reply, filed under Extensions.
Search
Have a look at this code, that should help: http://github.com/nilshoerrmann/localisationmanager/blob/1.0.2/extension.driver.php#L233
Create an account or sign in to comment.
How can I add an extra fieldset in the Author screen? I’ve added one now, but it shows below the submit-button, and I want to have it above the submit button offcourse :)
My code:
$group = new XMLElement('fieldset'); $group->setAttribute('class', 'settings'); $group->appendChild(new XMLElement('legend', 'Allowed sections')); $form = Administration::instance()->Page->Form; $form->appendChild($group);