abstract public function OverviewBase::getRegions

Get the regions needed to create the overview form.

Return value

array Example usage:

return array(
  'content' => array(
    // label for the region.
    'title' => t('Content'),
    // Indicates if the region is visible in the UI.
    'invisible' => TRUE,
    // A mesage to indicate that there is nothing to be displayed in
    // the region.
    'message' => t('No field is displayed.'),
  ),
);
1 call to OverviewBase::getRegions()
OverviewBase::getRegionOptions in drupal/core/modules/field_ui/lib/Drupal/field_ui/OverviewBase.php
Returns an associative array of all regions.
2 methods override OverviewBase::getRegions()
DisplayOverview::getRegions in drupal/core/modules/field_ui/lib/Drupal/field_ui/DisplayOverview.php
Implements Drupal\field_ui\OverviewBase::getRegions().
FieldOverview::getRegions in drupal/core/modules/field_ui/lib/Drupal/field_ui/FieldOverview.php
Implements Drupal\field_ui\OverviewBase::getRegions().

File

drupal/core/modules/field_ui/lib/Drupal/field_ui/OverviewBase.php, line 120
Definition of Drupal\field_ui\OverviewBase.

Class

OverviewBase
Abstract base class for Field UI overview forms.

Namespace

Drupal\field_ui

Code

public abstract function getRegions();