You are here

Email.php in Social Media Links Block and Field 8.2

File

src/Plugin/SocialMediaLinks/Platform/Email.php
View source
<?php

namespace Drupal\social_media_links\Plugin\SocialMediaLinks\Platform;

use Drupal\social_media_links\PlatformBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Url;

/**
 * Provides 'email' platform.
 *
 * @Platform(
 *   id = "email",
 *   name = @Translation("E-Mail"),
 * )
 */
class Email extends PlatformBase {

  /**
   * {@inheritdoc}
   */
  public function getUrl() {
    return Url::fromUri('mailto:' . $this
      ->getValue());
  }

  /**
   * {@inheritdoc}
   */
  public static function validateValue(array &$element, FormStateInterface $form_state, array $form) {
    if (!empty($element['#value'])) {
      $validator = \Drupal::service('email.validator');
      if (!$validator
        ->isValid($element['#value'])) {
        $form_state
          ->setError($element, t('The entered email address is not valid.'));
      }
    }
  }

}

Classes

Namesort descending Description
Email Provides 'email' platform.