Mail.php

Definition of Drupal\user\Plugin\views\field\Mail.

Namespace

Drupal\user\Plugin\views\field

File

drupal/core/modules/user/lib/Drupal/user/Plugin/views/field/Mail.php
View source
<?php

/**
 * @file
 * Definition of Drupal\user\Plugin\views\field\Mail.
 */
namespace Drupal\user\Plugin\views\field;

use Drupal\Core\Annotation\Plugin;

/**
/**
* Field handler to provide acess control for the email field.
*
* @ingroup views_field_handlers
*
* @Plugin(
*   id = "user_mail",
*   module = "user"
* )
*/
class Mail extends User {
  protected function defineOptions() {
    $options = parent::defineOptions();
    $options['link_to_user'] = array(
      'default' => 'mailto',
    );
    return $options;
  }
  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'],
    );
  }
  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;
  }

}

Classes

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