function EntityDisplayFormBase::getRowRegion

Same name and namespace in other branches
  1. 8.9.x core/modules/field_ui/src/Form/EntityDisplayFormBase.php \Drupal\field_ui\Form\EntityDisplayFormBase::getRowRegion()
  2. 10 core/modules/field_ui/src/Form/EntityDisplayFormBase.php \Drupal\field_ui\Form\EntityDisplayFormBase::getRowRegion()
  3. 11.x core/modules/field_ui/src/Form/EntityDisplayFormBase.php \Drupal\field_ui\Form\EntityDisplayFormBase::getRowRegion()

Returns the region to which a row in the display overview belongs.

Parameters

array $row: The row element.

Return value

string|null The region name this row belongs to.

File

core/modules/field_ui/src/Form/EntityDisplayFormBase.php, line 810

Class

EntityDisplayFormBase
Base class for EntityDisplay edit forms.

Namespace

Drupal\field_ui\Form

Code

public function getRowRegion(&$row) {
    $regions = $this->getRegions();
    if (!isset($regions[$row['region']['#value']])) {
        $row['region']['#value'] = 'hidden';
    }
    return $row['region']['#value'];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.