You are here

function multiple_email_handler_filter_current::construct in Multiple E-mail Addresses 7

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

Views handlers use a special construct function.

Allows it to more easily construct them with variable arguments.

Overrides views_handler_filter_boolean_operator::construct

File

views/multiple_email_handler_filter_current.inc, line 13
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 a field.

Code

function construct() {
  parent::construct();
  $this->value_value = t('Matches one of the multiple e-mail addresses of the logged in user');
}