You are here

public function ThemeLocalTask::getDerivativeDefinitions in Style Switcher 3.0.x

Same name and namespace in other branches
  1. 8.2 src/Plugin/Derivative/ThemeLocalTask.php \Drupal\styleswitcher\Plugin\Derivative\ThemeLocalTask::getDerivativeDefinitions()

Gets the definition of all derivatives of a base plugin.

Parameters

array $base_plugin_definition: The definition array of the base plugin.

Return value

array An array of full derivative definitions keyed on derivative id.

Overrides DeriverBase::getDerivativeDefinitions

See also

getDerivativeDefinition()

File

src/Plugin/Derivative/ThemeLocalTask.php, line 42

Class

ThemeLocalTask
Provides dynamic tabs based on active themes.

Namespace

Drupal\styleswitcher\Plugin\Derivative

Code

public function getDerivativeDefinitions($base_plugin_definition) {
  foreach ($this->themeHandler
    ->listInfo() as $theme_name => $theme) {
    if ($this->themeHandler
      ->hasUi($theme_name)) {
      $this->derivatives[$theme_name] = $base_plugin_definition;
      $this->derivatives[$theme_name]['title'] = $theme->info['name'];
      $this->derivatives[$theme_name]['route_parameters'] = [
        'theme' => $theme_name,
      ];
    }
  }
  return $this->derivatives;
}