You are here

function ctools_user_edit_context in Chaos Tool Suite (ctools) 7

Discover if this argument gives us the term we crave.

1 string reference to 'ctools_user_edit_context'
user_edit.inc in plugins/arguments/user_edit.inc
Plugin to provide an argument handler for a Taxonomy term.

File

plugins/arguments/user_edit.inc, line 27
Plugin to provide an argument handler for a Taxonomy term.

Code

function ctools_user_edit_context($arg = NULL, $conf = NULL, $empty = FALSE) {

  // If unset it wants a generic, unfilled context.
  if ($empty) {
    return ctools_context_create_empty('user_edit_form');
  }
  if (is_object($arg)) {
    return ctools_context_create('user_edit_form', $arg);
  }
  if (!is_numeric($arg)) {
    return FALSE;
  }
  $account = user_load($arg);
  if (!$account) {
    return NULL;
  }

  // This will perform a node_access check, so we don't have to.
  return ctools_context_create('user_edit_form', $account);
}