get('language'); $request = $phpbb_container->get('request'); if ($request->variable('action', '', true) === 'select_file') { $mode = 'files'; } /** @var \phpbbstudio\ass\controller\acp_settings_controller $controller */ $controller = $phpbb_container->get("phpbbstudio.ass.controller.acp.{$mode}"); // Set the page title and template $this->tpl_name = 'ass_' . $mode; $this->page_title = $language->lang('ACP_ASS_SYSTEM') . ' • ' . $language->lang('ACP_ASS_' . utf8_strtoupper($mode)); // Make the custom form action available in the controller and handle the mode $controller->set_page_url($this->u_action)->{$mode}(); } }