You are here

function views_handler_argument_node_registration_registered::query in Node registration 7

Set up the query for this argument.

The argument sent may be found at $this->argument.

Parameters

bool $group_by: Whether the query uses a group-by.

Overrides views_handler_argument_numeric::query

File

includes/views/views_handler_argument_node_registration_registered.inc, line 11
Provide not registered users argument handler.

Class

views_handler_argument_node_registration_registered
Argument handler to accept a user id.

Code

function query($group_by = FALSE) {
  $this
    ->ensure_my_table();
  if (!empty($this->options['break_phrase'])) {
    views_break_phrase($this->argument, $this);
  }
  else {
    $this->value = array(
      $this->argument,
    );
  }
  $results = db_query("SELECT nr.uid FROM {node_registration} nr WHERE nr.nid IN (:nids) AND nr.cancelled = 0", array(
    ':nids' => $this->value,
  ));
  $uids = array();
  foreach ($results as $result) {
    $uids[] = $result->uid;
  }
  $placeholder = $this
    ->placeholder();
  $null_check = empty($this->options['not']) ? '' : "OR {$this->table_alias}.{$this->real_field} IS NULL";
  if (count($uids) > 1) {
    $operator = empty($this->options['not']) ? 'IN' : 'NOT IN';
    $this->query
      ->add_where_expression(0, "{$this->table_alias}.{$this->real_field} {$operator}({$placeholder}) {$null_check}", array(
      $placeholder => $uids,
    ));
  }
  else {
    $operator = empty($this->options['not']) ? '=' : '!=';
    $this->query
      ->add_where_expression(0, "{$this->table_alias}.{$this->real_field} {$operator} {$placeholder} {$null_check}", array(
      $placeholder => $uids,
    ));
  }
}