You are here

function views_handler_filter_rr_user::construct in Recently Read 7.2

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

includes/views_handler_filter_rr_user.inc, line 14
Definition of views_handler_filter_user_current.

Class

views_handler_filter_rr_user
Filter handler for the current user.

Code

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