function node_assign_owner_action_submit

Saves settings form for node_assign_owner_action().

See also

node_assign_owner_action_validate()

File

modules/node/node.module, line 4056

Code

function node_assign_owner_action_submit($form, $form_state) {
    // Username can change, so we need to store the ID, not the username.
    $uid = db_query('SELECT uid from {users} WHERE name = :name', array(
        ':name' => $form_state['values']['owner_name'],
    ))->fetchField();
    return array(
        'owner_uid' => $uid,
    );
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.