For the case of changing programmatically the state of a node, there is the need of a new hook_workbench_moderation_moderate_alter.
If required, via form alter, is possible to hide the transition dropdown for certain users.

Comments

Drupa1ish’s picture

Status: Active » Needs review
StatusFileSize
new1.54 KB
Drupa1ish’s picture

The correct function in the patch is workbench_moderation_moderate

function workbench_moderation_moderate($node, $state) {
  global $user;

    // Allow other modules to change the state.
    drupal_alter('workbench_moderation_moderate', $node, $state);

Sorry , no time to reroll