public function Mail::buildOptionsForm

Provide link to node option

Overrides User::buildOptionsForm

File

drupal/core/modules/user/lib/Drupal/user/Plugin/views/field/Mail.php, line 31
Definition of Drupal\user\Plugin\views\field\Mail.

Class

Mail
Field handler to provide acess control for the email field.

Namespace

Drupal\user\Plugin\views\field

Code

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'],
  );
}