How to Hide the "FormLayer" Admin Menu

function plt_hide_formlayer_menus() {
	//Hide the "FormLayer" menu.
	remove_menu_page('formlayer');
}

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

Where do I put this code?