Add new case to acp_board_config_edit_add

Discussion forum for Extension Writers regarding Extension Development.
User avatar
Kailey
Community Team Leader
Community Team Leader
Posts: 3936
Joined: Mon Sep 01, 2014 1:00 am
Location: sudo rm -rf /
Name: Kailey Snay

Add new case to acp_board_config_edit_add

Post by Kailey »

I need to add a case to the switch for acp_board_config_edit_add. Is it as simple as the following code snippet?

Code: Select all

public function acp_board_config_edit_add($event)
{
	switch ($event['mode'])
	{
		case 'user_prune':
			$event['display_vars'] = [
				'title'	=> 'ACP_USER_PRUNE_SETTINGS',
				'vars'	=> [
					'legend1'				=> 'GENERAL_SETTINGS',
					'user_prune_period'		=> ['lang' => 'USER_PRUNE_PERIOD', 'validate' => 'int:0', 'type' => 'text:4:4', 'explain' => true, 'append' => ' ' . $this->language->lang('DAYS')],
					'user_prune_retain'		=> ['lang' => 'USER_PRUNE_METHOD', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true],
				]
			];
		break;
	}
}
Kailey Snay - Community Team Leader
Knowledge Base | Documentation | Community rules
If you have any questions about the rules/customs of this website, feel free to send me a PM.

My little corner of the world | Administrator @ phpBB Modders
rxu
Extensions Development Team
Posts: 3949
Joined: Wed Oct 25, 2006 12:46 pm
Location: Siberia, Russian Federation

Re: Add new case to acp_board_config_edit_add

Post by rxu »

Not really. That event only allows adding/changing options to already existing modes.
User avatar
Kailey
Community Team Leader
Community Team Leader
Posts: 3936
Joined: Mon Sep 01, 2014 1:00 am
Location: sudo rm -rf /
Name: Kailey Snay

Re: Add new case to acp_board_config_edit_add

Post by Kailey »

That's unfortunate. Any ideas how to add a new switch case or should I explore other options?
Kailey Snay - Community Team Leader
Knowledge Base | Documentation | Community rules
If you have any questions about the rules/customs of this website, feel free to send me a PM.

My little corner of the world | Administrator @ phpBB Modders
rxu
Extensions Development Team
Posts: 3949
Joined: Wed Oct 25, 2006 12:46 pm
Location: Siberia, Russian Federation

Re: Add new case to acp_board_config_edit_add

Post by rxu »

Personally I'd just add new ACP module with ACP_BOARD_CONFIGURATION as a parent.

Return to “Extension Writers Discussion”