You are here

public static function CurrentThemeCondition::create in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/system/src/Plugin/Condition/CurrentThemeCondition.php \Drupal\system\Plugin\Condition\CurrentThemeCondition::create()
  2. 9 core/modules/system/src/Plugin/Condition/CurrentThemeCondition.php \Drupal\system\Plugin\Condition\CurrentThemeCondition::create()

File

core/modules/system/src/Plugin/Condition/CurrentThemeCondition.php, line 59

Class

CurrentThemeCondition
Provides a 'Current Theme' condition.

Namespace

Drupal\system\Plugin\Condition

Code

public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
  return new static($configuration, $plugin_id, $plugin_definition, $container
    ->get('theme.manager'), $container
    ->get('theme_handler'));
}