44
modules/user/views_handler_field_user_mail.inc
Normal file
44
modules/user/views_handler_field_user_mail.inc
Normal file
@@ -0,0 +1,44 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Definition of views_handler_field_user_mail.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Field handler to provide acess control for the email field.
|
||||
*
|
||||
* @ingroup views_field_handlers
|
||||
*/
|
||||
class views_handler_field_user_mail extends views_handler_field_user {
|
||||
function option_definition() {
|
||||
$options = parent::option_definition();
|
||||
$options['link_to_user'] = array('default' => 'mailto');
|
||||
return $options;
|
||||
}
|
||||
|
||||
function options_form(&$form, &$form_state) {
|
||||
parent::options_form($form, $form_state);
|
||||
$form['link_to_user'] = array(
|
||||
'#title' => t('Link this field'),
|
||||
'#type' => 'radios',
|
||||
'#options' => array(
|
||||
0 => t('No link'),
|
||||
'user' => t('To the user'),
|
||||
'mailto' => t("With a mailto:"),
|
||||
),
|
||||
'#default_value' => $this->options['link_to_user'],
|
||||
);
|
||||
}
|
||||
|
||||
function render_link($data, $values) {
|
||||
parent::render_link($data, $values);
|
||||
|
||||
if ($this->options['link_to_user'] == 'mailto') {
|
||||
$this->options['alter']['make_link'] = TRUE;
|
||||
$this->options['alter']['path'] = "mailto:" . $data;
|
||||
}
|
||||
|
||||
return $data;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user