When you don’t want to give users the ability to add a new form from the admin menu.
add_action( 'wp_before_admin_bar_render', 'remove_wp_logo', 999 );
function remove_wp_logo() {
global $wp_admin_bar;
$wp_admin_bar->remove_node( 'gravityforms-new-form' );
}






