How to Hide the "FLOWFACT" Admin Menu

function plt_hide_flowfact_wp_connector_menus() {
	//Hide the "FLOWFACT" menu.
	remove_menu_page('ff-plugin');
}

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

Where do I put this code?