1 views_handler_field_user_picture.inc views_handler_field_user_picture::construct()

Construct a new field handler.

Overrides views_handler_field::construct

File

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

Class

views_handler_field_user_picture
Field handler to provide simple renderer that allows using a themed user link.

Code

function construct() {
  parent::construct();
  $this->additional_fields['uid'] = 'uid';
  $this->additional_fields['name'] = 'name';
  $this->additional_fields['mail'] = 'mail';
}