public function Theme::getSettingPlugins in Express 8
Retrieves the theme's setting plugin instances.
Return value
\Drupal\bootstrap\Plugin\Setting\SettingInterface[] An associative array of setting objects, keyed by their name.
Deprecated
Will be removed in a future release. Use \Drupal\bootstrap\Theme::getSettingPlugin instead.
File
- themes/
contrib/ bootstrap/ src/ Theme.php, line 574 - Contains \Drupal\bootstrap.
Class
- Theme
- Defines a theme object.
Namespace
Drupal\bootstrapCode
public function getSettingPlugins() {
Bootstrap::deprecated();
return $this
->getSettingPlugin();
}