You are here

function recently_read_handler_filter_current::construct in Recently Read 7.3

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/recently_read_handler_filter_current.inc, line 14
Definition of views_handler_filter_user_current.

Class

recently_read_handler_filter_current
Filter handler for the current user.

Code

function construct() {
  parent::construct();
  $this->value_value = t('Is the current session?');
}