get_tab_label( $tab ); } return esc_html__( 'About Us', 'wp-mail-smtp' ); } /** * Title of a page. * * @since 1.5.0 * * @return string */ public function get_title() { return $this->get_label(); } /** * Active the given plugin. * * @deprecated 2.9.0 * * @since 1.5.0 */ public static function ajax_plugin_activate() { _deprecated_function( __METHOD__, '2.9.0', '\WPMailSMTP\Admin\Pages\AboutTab::ajax_plugin_activate' ); AboutTab::ajax_plugin_activate(); } /** * Install & activate the given plugin. * * @deprecated 2.9.0 * * @since 1.5.0 */ public static function ajax_plugin_install() { _deprecated_function( __METHOD__, '2.9.0', '\WPMailSMTP\Admin\Pages\AboutTab::ajax_plugin_install' ); AboutTab::ajax_plugin_install(); } }