on the Permissions page.", array('!url' => url('admin/people/permissions', array('fragment' => 'module-workflow')))); } /** * Gives all user roles the ability to participate in workflows. * * This is only done for updating. New installs must set the roles themselves. */ function workflow_admin_ui_update_7001(&$sandbox) { $perms = array('participate in workflow' => 1); foreach (user_roles() as $rid => $name) { user_role_change_permissions($rid, $perms); } return _workflow_admin_ui_participate(); }