public function Mail::buildOptionsForm in Views (for Drupal 7) 8.3
Provide link to node option
Overrides User::buildOptionsForm
File
- lib/
Views/ user/ Plugin/ views/ field/ Mail.php, line 31 - Definition of Views\user\Plugin\views\field\Mail.
Class
- Field handler to provide acess control for the email field.
Namespace
Views\user\Plugin\views\fieldCode
public function buildOptionsForm(&$form, &$form_state) {
parent::buildOptionsForm($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'],
);
}