function ctools_argument_user_name_context in Chaos Tool Suite (ctools) 7
Same name and namespace in other branches
- 6 plugins/arguments/user_name.inc \ctools_argument_user_name_context()
Discover if this argument gives us the user we crave.
1 string reference to 'ctools_argument_user_name_context'
- user_name.inc in plugins/arguments/ user_name.inc 
- Plugin to provide an argument handler for a username.
File
- plugins/arguments/ user_name.inc, line 27 
- Plugin to provide an argument handler for a username.
Code
function ctools_argument_user_name_context($arg = NULL, $conf = NULL, $empty = FALSE) {
  // If unset it wants a generic, unfilled context.
  if ($empty) {
    return ctools_context_create_empty('user');
  }
  // We can accept either a node object or a pure nid.
  if (is_object($arg)) {
    return ctools_context_create('user', $arg);
  }
  $account = user_load_by_name($arg);
  if (!$account) {
    return NULL;
  }
  return ctools_context_create('user', $account);
}