You are here

function fb_views_handler_filter_friends::construct in Drupal for Facebook 7.3

Same name and namespace in other branches
  1. 6.3 fb_views/fb_views_handler_filter_friends.inc \fb_views_handler_filter_friends::construct()
  2. 6.2 fb_views/fb_views_handler_filter_friends.inc \fb_views_handler_filter_friends::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

fb_views/fb_views_handler_filter_friends.inc, line 7
Filter handler for friends of the current user

Class

fb_views_handler_filter_friends
@file Filter handler for friends of the current user

Code

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