setCacheBackend($cache_backend, 'field_formatter_types_plugins'); $this->alterInfo('field_formatter_info'); $this->fieldTypeManager = $field_type_manager; } /** * {@inheritdoc} */ public function createInstance($plugin_id, array $configuration = []) { $plugin_definition = $this->getDefinition($plugin_id); $plugin_class = DefaultFactory::getPluginClass($plugin_id, $plugin_definition); // @todo This is copied from \Drupal\Core\Plugin\Factory\ContainerFactory. // Find a way to restore sanity to // \Drupal\Core\Field\FormatterBase::__construct(). // If the plugin provides a factory method, pass the container to it. if (is_subclass_of($plugin_class, 'Drupal\Core\Plugin\ContainerFactoryPluginInterface')) { return $plugin_class::create(\Drupal::getContainer(), $configuration, $plugin_id, $plugin_definition); } return new $plugin_class($plugin_id, $plugin_definition, $configuration['field_definition'], $configuration['settings'], $configuration['label'], $configuration['view_mode'], $configuration['third_party_settings']); } /** * Overrides PluginManagerBase::getInstance(). * * @param array $options * An array with the following key/value pairs: * - field_definition: (FieldDefinitionInterface) The field definition. * - view_mode: (string) The view mode. * - prepare: (bool, optional) Whether default values should get merged in * the 'configuration' array. Defaults to TRUE. * - configuration: (array) the configuration for the formatter. The * following key value pairs are allowed, and are all optional if * 'prepare' is TRUE: * - label: (string) Position of the label. The default 'field' theme * implementation supports the values 'inline', 'above' and 'hidden'. * Defaults to 'above'. * - type: (string) The formatter to use. Defaults to the * 'default_formatter' for the field type, The default formatter will * also be used if the requested formatter is not available. * - settings: (array) Settings specific to the formatter. Each setting * defaults to the default value specified in the formatter definition. * - third_party_settings: (array) Settings provided by other extensions * through hook_field_formatter_third_party_settings_form(). * * @return \Drupal\Core\Field\FormatterInterface|null * A formatter object or NULL when plugin is not found. */ public function getInstance(array $options) { $configuration = $options['configuration']; $field_definition = $options['field_definition']; $field_type = $field_definition->getType(); // Fill in default configuration if needed. if (!isset($options['prepare']) || $options['prepare'] == TRUE) { $configuration = $this->prepareConfiguration($field_type, $configuration); } $plugin_id = $configuration['type']; // Switch back to default formatter if either: // - the configuration does not specify a formatter class // - the field type is not allowed for the formatter // - the formatter is not applicable to the field definition. $definition = $this->getDefinition($configuration['type'], FALSE); if (!isset($definition['class']) || !in_array($field_type, $definition['field_types']) || !$definition['class']::isApplicable($field_definition)) { // Grab the default widget for the field type. $field_type_definition = $this->fieldTypeManager->getDefinition($field_type); if (empty($field_type_definition['default_formatter'])) { return NULL; } $plugin_id = $field_type_definition['default_formatter']; } $configuration += [ 'field_definition' => $field_definition, 'view_mode' => $options['view_mode'], ]; return $this->createInstance($plugin_id, $configuration); } /** * Merges default values for formatter configuration. * * @param string $field_type * The field type. * @param array $configuration * An array of formatter configuration. * * @return array * The display properties with defaults added. */ public function prepareConfiguration($field_type, array $configuration) { // Fill in defaults for missing properties. $configuration += [ 'label' => 'above', 'settings' => [], 'third_party_settings' => [], ]; // If no formatter is specified, use the default formatter. if (!isset($configuration['type'])) { $field_type = $this->fieldTypeManager->getDefinition($field_type); $configuration['type'] = $field_type['default_formatter']; } // Filter out unknown settings, and fill in defaults for missing settings. $default_settings = $this->getDefaultSettings($configuration['type']); $configuration['settings'] = array_intersect_key($configuration['settings'], $default_settings) + $default_settings; return $configuration; } /** * Returns an array of formatter options for a field type. * * @param string|null $field_type * (optional) The name of a field type, or NULL to retrieve all formatters. * * @return array * If no field type is provided, returns a nested array of all formatters, * keyed by field type. */ public function getOptions($field_type = NULL) { if (!isset($this->formatterOptions)) { $options = []; $field_types = $this->fieldTypeManager->getDefinitions(); $formatter_types = $this->getDefinitions(); uasort($formatter_types, ['Drupal\Component\Utility\SortArray', 'sortByWeightElement']); foreach ($formatter_types as $name => $formatter_type) { foreach ($formatter_type['field_types'] as $formatter_field_type) { // Check that the field type exists. if (isset($field_types[$formatter_field_type])) { $options[$formatter_field_type][$name] = $formatter_type['label']; } } } $this->formatterOptions = $options; } if ($field_type) { return !empty($this->formatterOptions[$field_type]) ? $this->formatterOptions[$field_type] : []; } return $this->formatterOptions; } /** * Returns the default settings of a field formatter. * * @param string $type * A field formatter type name. * * @return array * The formatter type's default settings, as provided by the plugin * definition, or an empty array if type or settings are undefined. */ public function getDefaultSettings($type) { $plugin_definition = $this->getDefinition($type, FALSE); if (!empty($plugin_definition['class'])) { $plugin_class = DefaultFactory::getPluginClass($type, $plugin_definition); return $plugin_class::defaultSettings(); } return []; } }