function views_handler_field_user_picture::option_definition

Overrides views_handler_field::option_definition

File

modules/user/views_handler_field_user_picture.inc, line 53

Class

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

Code

public function option_definition() {
    $options = parent::option_definition();
    $options['link_photo_to_profile'] = array(
        'default' => TRUE,
        'bool' => TRUE,
    );
    $options['image_style'] = array(
        'default' => '',
    );
    return $options;
}