You are here

public static function WebformExcludedBase::getWebformExcludedOptions in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Element/WebformExcludedBase.php \Drupal\webform\Element\WebformExcludedBase::getWebformExcludedOptions()

Get options for excluded tableselect element.

Parameters

array $element: An associative array containing the properties and children of the generic element element.

Return value

array An array of options containing title, name, and type of items for a tableselect element.

1 call to WebformExcludedBase::getWebformExcludedOptions()
WebformExcludedBase::processWebformExcluded in src/Element/WebformExcludedBase.php
Processes a webform elements webform element.
2 methods override WebformExcludedBase::getWebformExcludedOptions()
WebformExcludedColumns::getWebformExcludedOptions in src/Element/WebformExcludedColumns.php
Get options for excluded tableselect element.
WebformExcludedElements::getWebformExcludedOptions in src/Element/WebformExcludedElements.php
Get options for excluded tableselect element.

File

src/Element/WebformExcludedBase.php, line 113

Class

WebformExcludedBase
Provides a base webform element for webform excluded elements and columns.

Namespace

Drupal\webform\Element

Code

public static function getWebformExcludedOptions(array $element) {
  return [];
}