You are here

function multiple_email_handler_filter_current::query in Multiple E-mail Addresses 6

Same name and namespace in other branches
  1. 7 views/multiple_email_handler_filter_current.inc \multiple_email_handler_filter_current::query()
  2. 2.x views/multiple_email_handler_filter_current.inc \multiple_email_handler_filter_current::query()

File

views/multiple_email_handler_filter_current.inc, line 17
filter heandler for matching e-mail addresses to cck e-mail field.

Class

multiple_email_handler_filter_current
Filter handler for the current user's e-mail addresses to match to a cck field

Code

function query() {
  $this
    ->ensure_my_table();
  $where = "{$this->table_alias}.{$this->real_field} ";

  // get the current user's addresses
  global $user;
  $emails = multiple_email_load_addresses($user->uid);
  $addresses = array();
  foreach ($emails as $email) {
    if (is_object($email) && $email->confirm_code) {
      $addresses[] = $email->email;
    }
  }
  if (empty($this->value)) {
    $where .= 'NOT ';
  }
  $where .= "IN ('" . implode("','", $addresses) . "') ";
  $this->query
    ->add_where($this->options['group'], $where);
}