You are here

public function GridStackPluginBase::getSetting in GridStack 8.2

12 calls to GridStackPluginBase::getSetting()
BootstrapBase::itemAttributes in src/Plugin/gridstack/engine/BootstrapBase.php
Modifies the .box attributes.
GridBase::containerAttributes in src/Plugin/gridstack/engine/GridBase.php
Returns the .gridstack container attributes.
GridStackBase::attach in src/Plugin/gridstack/engine/GridStackBase.php
Provides gridstack skins and libraries.
GridStackBase::build in src/Plugin/gridstack/engine/GridStackBase.php
Alters GridStack build.
GridStackBase::containerAttributes in src/Plugin/gridstack/engine/GridStackBase.php
Returns the .gridstack container attributes.

... See full list

File

src/GridStackPluginBase.php, line 137

Class

GridStackPluginBase
Provides base class for all gridstack plugins.

Namespace

Drupal\gridstack

Code

public function getSetting($key, $default = NULL) {
  return isset($this->configuration[$key]) ? $this->configuration[$key] : $default;
}