You are here

public static function GridStackDefault::cleanUiSettings in GridStack 8.2

Returns shared global form settings which should be consumed at formatters.

2 calls to GridStackDefault::cleanUiSettings()
GridStackDefault::uiSettings in src/GridStackDefault.php
Returns shared global form settings which should be consumed at formatters.
GridStackManager::getGridStackSettings in src/GridStackManager.php
Returns the common settings inherited down to each item.

File

src/GridStackDefault.php, line 128

Class

GridStackDefault
Defines shared plugin default settings for field formatter and Views style.

Namespace

Drupal\gridstack

Code

public static function cleanUiSettings() {
  return [
    'debug' => FALSE,
    'dev' => FALSE,
    'framework' => '',
    'no_classes' => FALSE,
    'library' => '',
    'optimized' => FALSE,
    'html5_ac' => FALSE,
    'gridstatic' => FALSE,
  ];
}