'. esc_html__('User Role Editor Options page help', 'user-role-editor') .'

'; return $text; } // end of get_general_tab() protected function get_additional_modules_tab() { $text = '

'. esc_html__('User Role Editor Options page help', 'user-role-editor') .'

'; return $text; } // end of get_additional_modules_tab() protected function get_default_roles_tab() { $text = '

'. esc_html__('User Role Editor Options page help', 'user-role-editor') .'

'; return $text; } // end of get_default_roles_tab() protected function get_multisite_tab() { $text = '

'. esc_html__( 'User Role Editor Options page help', 'user-role-editor' ) .'

'; return $text; } // end of get_multisite_tab() public function get_settings_help($tab_name) { switch ($tab_name) { case 'general':{ $text = $this->get_general_tab(); break; } case 'additional_modules':{ $text = $this->get_additional_modules_tab(); break; } case 'default_roles':{ $text = $this->get_default_roles_tab(); break; } case 'multisite':{ $text = $this->get_multisite_tab(); break; } default: } return $text; } // end of get_settings_help() } // end of URE_Screen_Help