You are here

FieldWrapperSource.php in UI Patterns Field Formatters 8

File

src/Plugin/UiPatterns/Source/FieldWrapperSource.php
View source
<?php

namespace Drupal\ui_patterns_field_formatters\Plugin\UiPatterns\Source;

use Drupal\ui_patterns\Plugin\PatternSourceBase;

/**
 * Defines Field values source plugin.
 *
 * @UiPatternsSource(
 *   id = "field_wrapper",
 *   label = @Translation("Field wrapper"),
 *   tags = {
 *     "field_wrapper"
 *   }
 * )
 */
class FieldWrapperSource extends PatternSourceBase {

  /**
   * {@inheritdoc}
   */
  public function getSourceFields() {
    $sources = [];
    $sources[] = $this
      ->getSourceField('label', 'Label');
    $sources[] = $this
      ->getSourceField('items', 'Items');
    return $sources;
  }

}

Classes

Namesort descending Description
FieldWrapperSource Defines Field values source plugin.