You are here

public static function TimeInterval::create in Drupal 10

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

File

core/modules/views/src/Plugin/views/field/TimeInterval.php, line 46

Class

TimeInterval
A handler to provide proper displays for time intervals.

Namespace

Drupal\views\Plugin\views\field

Code

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