You are here

SmsLinkFormatter.php in SMS Framework 8

File

modules/sms_sendtophone/src/Plugin/Field/FieldFormatter/SmsLinkFormatter.php
View source
<?php

namespace Drupal\sms_sendtophone\Plugin\Field\FieldFormatter;

use Drupal\Core\Field\FieldItemListInterface;
use Drupal\Core\Field\FormatterBase;
use Drupal\Core\Url;

/**
 * Defines a SMS field formatter.
 *
 * @FieldFormatter(
 *   id = "sms_link",
 *   label = @Translation("SMS Link"),
 *   field_types = {"text"}
 * )
 */
class SmsLinkFormatter extends FormatterBase {

  /**
   * {@inheritdoc}
   */
  public function viewElements(FieldItemListInterface $items, $langcode) {
    $element = [];
    foreach ($items as $delta => $item) {
      $text = strip_tags($item->value);
      $element[$delta] = [
        '#type' => 'markup',
        'text' => [
          '#type' => 'markup',
          '#markup' => $text,
          '#prefix' => '<span class="sms-sendtophone-inline">',
          '#suffix' => '</span>',
        ],
        'link' => [
          '#type' => 'link',
          '#prefix' => ' (',
          '#suffix' => ')',
          '#title' => $this
            ->t('Send to phone'),
          '#url' => Url::fromRoute('sms_sendtophone.page', [
            'type' => 'field',
          ], [
            'query' => [
              'text' => $text,
              'destination' => \Drupal::destination()
                ->get(),
            ],
          ]),
          '#attributes' => [
            'title' => $this
              ->t('Send this text via SMS.'),
            'class' => 'sms-sendtophone',
          ],
        ],
      ];
    }
    return $element;
  }

}

Classes

Namesort descending Description
SmsLinkFormatter Defines a SMS field formatter.