You are here

WebformTableRow.php in Webform 6.x

File

src/Element/WebformTableRow.php
View source
<?php

namespace Drupal\webform\Element;

use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Render\Element\RenderElement;
use Drupal\webform\Utility\WebformFormHelper;

/**
 * Provides a render element for webform table row.
 *
 * @FormElement("webform_table_row")
 */
class WebformTableRow extends RenderElement {

  /**
   * {@inheritdoc}
   */
  public function getInfo() {
    $class = get_class($this);
    return [
      '#optional' => FALSE,
      '#process' => [
        [
          $class,
          'processTableRow',
        ],
      ],
      '#pre_render' => [],
    ];
  }

  /**
   * Processes a webfrom table row element.
   *
   * @param array $element
   *   An associative array containing the properties and children of the
   *   container.
   * @param \Drupal\Core\Form\FormStateInterface $form_state
   *   The current state of the form.
   * @param array $complete_form
   *   The complete form structure.
   *
   * @return array
   *   The processed element.
   */
  public static function processTableRow(&$element, FormStateInterface $form_state, &$complete_form) {
    $element['#attributes']['class'][] = 'webform-table-row';
    if (!empty($element['#states'])) {
      WebformFormHelper::processStates($element);
    }
    return $element;
  }

}

Classes

Namesort descending Description
WebformTableRow Provides a render element for webform table row.