Kimai_Database_Mysql::user_name2id PHP Method

user_name2id() public method

return ID of specific user by name
Author: th
public user_name2id ( integer $name ) : string | boolean
$name integer name of user in table users
return string | boolean
    public function user_name2id($name)
    {
        return $this->name2id($this->kga['server_prefix'] . 'users', 'userID', 'name', $name);
    }
Kimai_Database_Mysql