You are here

function views_handler_filter_upload_fid::construct in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 6.2 modules/upload/views_handler_filter_upload_fid.inc \views_handler_filter_upload_fid::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

modules/upload/views_handler_filter_upload_fid.inc, line 7

Class

views_handler_filter_upload_fid
Filter by whether or not a node has attached files from the upload module

Code

function construct() {
  parent::construct();
  $this->value_value = t('Has attached files');
}