[Template] acp_groups_options_before and acp_groups_options_after

These requests for events in core phpBB have been merged into 3.1/Ascraeus and will be available with the next release.
Post Reply
User avatar
tbackoff
Registered User
Posts: 180
Joined: Sat Jun 12, 2010 3:25 am

[Template] acp_groups_options_before and acp_groups_options_after

Post by tbackoff »

In conjunction with this ACP PHP event request, need template event for the options section of /adm/style/acp_groups.html. The before event should be placed right after

Code: Select all

	<fieldset>
		<legend>{L_GROUP_OPTIONS_SAVE}</legend>
The after event should be placed after

Code: Select all

	<dl>
		<dt><label for="group_receive_pm">{L_GROUP_RECEIVE_PM}{L_COLON}</label><br /><span>{L_GROUP_RECEIVE_PM_EXPLAIN}</span></dt>
		<dd><input name="group_receive_pm" type="checkbox" value="1" class="radio" id="group_receive_pm"{GROUP_RECEIVE_PM} /></dd>
	</dl>

User avatar
tbackoff
Registered User
Posts: 180
Joined: Sat Jun 12, 2010 3:25 am

Re: [Template] acp_groups_options_before and acp_groups_options_after

Post by tbackoff »

Ticket: https://tracker.phpbb.com/browse/PHPBB3-12596
Pull request: https://github.com/phpbb/phpbb/pull/2502

I think I did this right. On a side note, I need help on how to create this core event request.

User avatar
tbackoff
Registered User
Posts: 180
Joined: Sat Jun 12, 2010 3:25 am

Re: [Template] acp_groups_options_before and acp_groups_options_after

Post by tbackoff »

This has been merged.

Post Reply