function views_handler_field_user::option_definition
Overrides views_handler_field::option_definition
2 calls to views_handler_field_user::option_definition()
- views_handler_field_user_mail::option_definition in modules/
user/ views_handler_field_user_mail.inc - Information about options for all kinds of purposes will be held here.
- views_handler_field_user_name::option_definition in modules/
user/ views_handler_field_user_name.inc - Information about options for all kinds of purposes will be held here.
2 methods override views_handler_field_user::option_definition()
- views_handler_field_user_mail::option_definition in modules/
user/ views_handler_field_user_mail.inc - Information about options for all kinds of purposes will be held here.
- views_handler_field_user_name::option_definition in modules/
user/ views_handler_field_user_name.inc - Information about options for all kinds of purposes will be held here.
File
-
modules/
user/ views_handler_field_user.inc, line 26
Class
- views_handler_field_user
- Field handler to provide simple renderer that allows linking to a user.
Code
public function option_definition() {
$options = parent::option_definition();
$options['link_to_user'] = array(
'default' => TRUE,
'bool' => TRUE,
);
return $options;
}