How to Hide the "qTranslate Importer" Admin Menu

function plt_hide_qtranslate_to_wpml_export_menus() {
	//Hide the "Settings → qTranslate Importer" menu.
	remove_submenu_page('options-general.php', 'qt-import');
}

add_action('admin_menu', 'plt_hide_qtranslate_to_wpml_export_menus', 11);

Where do I put this code?