You are here

public function TwitterWidgetWidget::formElement in Twitter Profile Widget 8.2

Same name and namespace in other branches
  1. 3.x src/Plugin/Field/FieldWidget/TwitterWidgetWidget.php \Drupal\twitter_profile_widget\Plugin\Field\FieldWidget\TwitterWidgetWidget::formElement()

Returns the form for a single field widget.

Field widget form elements should be based on the passed-in $element, which contains the base form element properties derived from the field configuration.

The BaseWidget methods will set the weight, field name and delta values for each form element. If there are multiple values for this field, the formElement() method will be called as many times as needed.

Other modules may alter the form element provided by this function using hook_field_widget_form_alter() or hook_field_widget_WIDGET_TYPE_form_alter().

The FAPI element callbacks (such as #process, #element_validate, #value_callback, etc.) used by the widget do not have access to the original $field_definition passed to the widget's constructor. Therefore, if any information is needed from that definition by those callbacks, the widget implementing this method, or a hook_field_widget[_WIDGET_TYPE]_form_alter() implementation, must extract the needed properties from the field definition and set them as ad-hoc $element['#custom'] properties, for later use by its element callbacks.

Parameters

\Drupal\Core\Field\FieldItemListInterface $items: Array of default values for this field.

int $delta: The order of this item in the array of sub-elements (0, 1, 2, etc.).

array $element: A form element array containing basic properties for the widget:

  • #field_parents: The 'parents' space for the field in the form. Most widgets can simply overlook this property. This identifies the location where the field values are placed within $form_state->getValues(), and is used to access processing information for the field through the getWidgetState() and setWidgetState() methods.
  • #title: The sanitized element label for the field, ready for output.
  • #description: The sanitized element description for the field, ready for output.
  • #required: A Boolean indicating whether the element value is required; for required multiple value fields, only the first widget's values are required.
  • #delta: The order of this item in the array of sub-elements; see $delta above.

array $form: The form structure where widgets are being attached to. This might be a full form structure, or a sub-element of a larger form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

Return value

array The form elements for a single widget for this field.

Overrides WidgetInterface::formElement

See also

hook_field_widget_form_alter()

hook_field_widget_WIDGET_TYPE_form_alter()

File

src/Plugin/Field/FieldWidget/TwitterWidgetWidget.php, line 70

Class

TwitterWidgetWidget
Plugin implementation of the 'twitter_widget' widget.

Namespace

Drupal\twitter_profile_widget\Plugin\Field\FieldWidget

Code

public function formElement(FieldItemListInterface $items, $delta, array $element, array &$form, FormStateInterface $form_state) {
  $config = \Drupal::config('twitter_profile_widget.settings');
  if ($config
    ->get('twitter_widget_token') !== 'Credentials Valid') {
    $this->messenger
      ->addWarning($this
      ->t('Credentials for the Twitter API have not been configured or are invalid. Review the <a href=":widget">Twitter widget</a> settings.', [
      ':widget' => '/admin/config/media/twitter_profile_widget',
    ]));
  }
  $field_name = $items
    ->getName();
  $item = $items[$delta];
  $element['headline'] = [
    '#type' => 'textfield',
    '#title' => $this
      ->t('Headline'),
    '#description' => $this
      ->t('Optional header that appears above the tweets.'),
    '#default_value' => isset($item->headline) ? $item->headline : 'Latest Tweets',
  ];
  $options = [
    'status' => 'User tweets',
    'timeline' => 'User timeline',
    'favorites' => 'Favorited by user',
    'search' => 'Search (Twitter-wide)',
  ];
  $element['list_type'] = [
    '#type' => 'select',
    '#title' => $this
      ->t('List type'),
    '#options' => $options,
    '#default_value' => isset($item->list_type) ? $item->list_type : 'status',
  ];
  $element['account'] = [
    '#type' => 'textfield',
    '#title' => $this
      ->t('User account'),
    '#description' => $this
      ->t('The username (handle) from which to pull tweets.'),
    '#default_value' => isset($item->account) ? $item->account : '',
    '#states' => [
      'invisible' => [
        ':input[name="' . $field_name . '[0][list_type]"]' => [
          'value' => 'search',
        ],
      ],
    ],
  ];
  $element['search'] = [
    '#type' => 'textfield',
    '#title' => $this
      ->t('Search'),
    '#description' => $this
      ->t('A search query, which may include Twitter <a href=":examples" target="blank">query operators</a>. Results are sorted based on Twitter ranking algorithm.', [
      ':examples' => 'https://dev.twitter.com/rest/public/search#query-operators',
    ]),
    '#default_value' => isset($item->search) ? $item->search : '',
    '#states' => [
      'visible' => [
        ':input[name="' . $field_name . '[0][list_type]"]' => [
          'value' => 'search',
        ],
      ],
    ],
  ];
  $element['timeline'] = [
    '#type' => 'textfield',
    '#title' => $this
      ->t('Timeline list'),
    '#description' => $this
      ->t('Must already exist in Twitter to return any results. Lists are found at https://twitter.com/[username]/lists'),
    '#default_value' => isset($item->timeline) ? $item->timeline : '',
    '#states' => [
      'visible' => [
        ':input[name="' . $field_name . '[0][list_type]"]' => [
          'value' => 'timeline',
        ],
      ],
    ],
  ];
  $element['count'] = [
    '#type' => 'select',
    '#title' => $this
      ->t('Number of tweets to display'),
    '#options' => array_combine(range(1, 10), range(1, 10)),
    '#default_value' => isset($item->count) ? $item->count : 5,
  ];
  $element['retweets'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Display retweets'),
    '#default_value' => isset($item->retweets) ? $item->retweets : 1,
    '#states' => [
      'visible' => [
        ':input[name="' . $field_name . '[0][list_type]"]' => [
          [
            'value' => 'status',
          ],
          [
            'value' => 'timeline',
          ],
        ],
      ],
    ],
  ];
  $element['replies'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Display replies'),
    '#default_value' => isset($item->replies) ? $item->replies : 1,
    '#states' => [
      'visible' => [
        ':input[name="' . $field_name . '[0][list_type]"]' => [
          [
            'value' => 'status',
          ],
          [
            'value' => 'timeline',
          ],
        ],
      ],
    ],
  ];
  $element['view_all'] = [
    '#type' => 'textfield',
    '#title' => $this
      ->t('"View all..." text'),
    '#description' => $this
      ->t('Optional text displayed at the bottom of the widget, linking to Twitter.'),
    '#default_value' => isset($item->view_all) ? $item->view_all : 'View on Twitter',
  ];
  $element['#element_validate'] = [
    [
      $this,
      'validate',
    ],
  ];
  return $element;
}