i find code in source is:
public function show_inbox_count( $menu ) {
$app_settings = $this->get_app_settings();
if ( ! rgar( $app_settings, 'workflow_inbox_count' ) ) {
return $menu;
}
$custom_labels = get_option( 'gravityflow_app_settings_labels', array() );
$custom_navigation_labels = rgar( $custom_labels, 'navigation' );
$custom_workflow_label = rgar( $custom_navigation_labels, 'workflow' );
$workflow_label = $custom_workflow_label ? $custom_workflow_label : 'Workflow';
$workflow_menu_pos = -1;
foreach ( $menu as $menuitem ) {
if ( $menuitem[0] == $workflow_label ) {
$workflow_menu_pos = array_search( $menuitem, $menu, true );
}
}
$pending_count = $this->get_inbox_count();
$menu[ $workflow_menu_pos ][0] = sprintf( __( '%s %s' ), $workflow_label, "<span class='update-plugins count-$pending_count'><span class='plugin-count'>" . number_format_i18n($pending_count) . "</span></span>" );
return $menu;
}