You are here

public static function Fieldset::getWrapperTypes in Views fieldsets 8.3

2 calls to Fieldset::getWrapperTypes()
Fieldset::buildOptionsForm in src/Plugin/views/field/Fieldset.php
Default options form that provides the label widget that all fields should have.
RowFieldset::getWrapperType in src/RowFieldset.php
Object getWrapperType().

File

src/Plugin/views/field/Fieldset.php, line 70

Class

Fieldset
@ViewsField("fieldset").

Namespace

Drupal\views_fieldsets\Plugin\views\field

Code

public static function getWrapperTypes() {
  $types =& drupal_static(__METHOD__);
  if (!$types) {

    // @todo Get from hook_theme() definitions?
    $types = [
      'details' => 'details',
      'fieldset' => 'fieldset',
      'div' => 'div',
    ];
  }
  return $types;
}