Version 1
[yaffs-website] / web / core / lib / Drupal / Core / Field / Plugin / Field / FieldFormatter / MailToFormatter.php
diff --git a/web/core/lib/Drupal/Core/Field/Plugin/Field/FieldFormatter/MailToFormatter.php b/web/core/lib/Drupal/Core/Field/Plugin/Field/FieldFormatter/MailToFormatter.php
new file mode 100644 (file)
index 0000000..3cc3430
--- /dev/null
@@ -0,0 +1,39 @@
+<?php
+
+namespace Drupal\Core\Field\Plugin\Field\FieldFormatter;
+
+use Drupal\Core\Field\FormatterBase;
+use Drupal\Core\Field\FieldItemListInterface;
+use Drupal\Core\Url;
+
+/**
+ * Plugin implementation of the 'email_mailto' formatter.
+ *
+ * @FieldFormatter(
+ *   id = "email_mailto",
+ *   label = @Translation("Email"),
+ *   field_types = {
+ *     "email"
+ *   }
+ * )
+ */
+class MailToFormatter extends FormatterBase {
+
+  /**
+   * {@inheritdoc}
+   */
+  public function viewElements(FieldItemListInterface $items, $langcode) {
+    $elements = [];
+
+    foreach ($items as $delta => $item) {
+      $elements[$delta] = [
+        '#type' => 'link',
+        '#title' => $item->value,
+        '#url' => Url::fromUri('mailto:' . $item->value),
+      ];
+    }
+
+    return $elements;
+  }
+
+}