You are here

public function PanelsDisplayVariant::getStorageType in Panels 8.3

Same name and namespace in other branches
  1. 8.4 src/Plugin/DisplayVariant/PanelsDisplayVariant.php \Drupal\panels\Plugin\DisplayVariant\PanelsDisplayVariant::getStorageType()

Gets the id of the storage plugin which can save this.

Return value

string|NULL

1 call to PanelsDisplayVariant::getStorageType()
PanelsDisplayVariant::buildConfigurationForm in src/Plugin/DisplayVariant/PanelsDisplayVariant.php
Form constructor.

File

src/Plugin/DisplayVariant/PanelsDisplayVariant.php, line 286

Class

PanelsDisplayVariant
Provides a display variant that simply contains blocks.

Namespace

Drupal\panels\Plugin\DisplayVariant

Code

public function getStorageType() {
  return $this->configuration['storage_type'] ?: NULL;
}