public function ThemeSettings::__construct

Constructs a theme settings object.

Parameters

string $name: The name of the theme settings object being constructed.

File

drupal/core/lib/Drupal/Core/Theme/ThemeSettings.php, line 37
Contains \Drupal\Core\Theme\ThemeSettings.

Class

ThemeSettings
Defines the default theme settings object.

Namespace

Drupal\Core\Theme

Code

public function __construct($theme) {
  $this->theme = $theme;
  $this->data = array();
}