1 views_handler_filter_user_current.inc views_handler_filter_user_current::construct()

Views handlers use a special construct function so that we can more easily construct them with variable arguments.

Overrides views_handler_filter_boolean_operator::construct

File

core/modules/user/views/views_handler_filter_user_current.inc, line 13
Definition of views_handler_filter_user_current.

Class

views_handler_filter_user_current
Filter handler for the current user.

Code

function construct() {
  parent::construct();
  $this->value_value = t('Is the logged in user');
}