lang}/mods/portal/" */ public $language = 'portal_search_module'; /** * custom acp template * file must be in "adm/style/portal/" */ public $custom_acp_tpl = ''; public function get_template_side($module_id) { global $template, $phpbb_root_path, $phpEx; $template->assign_var('S_SEARCH_ACTION', append_sid("{$phpbb_root_path}search.$phpEx")); return 'search_side.html'; } public function get_template_acp($module_id) { return array( 'title' => 'PORTAL_SEARCH', 'vars' => array(), ); } /** * API functions */ public function install($module_id) { return true; } public function uninstall($module_id) { return true; } }