class ExtraFieldBlockPlugin in Entity Extra Field 8
Same name and namespace in other branches
- 2.0.x src/Plugin/ExtraFieldType/ExtraFieldBlockPlugin.php \Drupal\entity_extra_field\Plugin\ExtraFieldType\ExtraFieldBlockPlugin
Define extra field block type.
Plugin annotation
@ExtraFieldType(
id = "block",
label = @Translation("Block")
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
- class \Drupal\entity_extra_field\ExtraFieldTypePluginBase implements ExtraFieldTypePluginInterface uses PluginDependencyTrait
- class \Drupal\entity_extra_field\Plugin\ExtraFieldType\ExtraFieldBlockPlugin
- class \Drupal\entity_extra_field\ExtraFieldTypePluginBase implements ExtraFieldTypePluginInterface uses PluginDependencyTrait
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of ExtraFieldBlockPlugin
File
- src/
Plugin/ ExtraFieldType/ ExtraFieldBlockPlugin.php, line 33
Namespace
Drupal\entity_extra_field\Plugin\ExtraFieldTypeView source
class ExtraFieldBlockPlugin extends ExtraFieldTypePluginBase {
/**
* @var \Drupal\Core\Entity\EntityTypeManagerInterface
*/
protected $blockManager;
/**
* @var \Drupal\Core\Plugin\Context\ContextHandlerInterface
*/
protected $contextHandler;
/**
* @var \Drupal\Core\Plugin\Context\ContextRepositoryInterface
*/
protected $contextRepository;
/**
* Extra field block plugin constructor.
*
* @param array $configuration
* The plugin configuration.
* @param $plugin_id
* The plugin identifier.
* @param $plugin_definition
* The plugin definition.
* @param \Drupal\Core\Utility\Token $token
* The token service.
* @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
* The module handler service.
* @param \Drupal\Core\Routing\RouteMatchInterface $current_route_match
* The current route match service.
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
* The entity type manager service.
* @param \Drupal\Core\Entity\EntityFieldManagerInterface $entity_field_manager
* The entity field manager service.
* @param \Drupal\Core\Block\BlockManagerInterface $block_manager
* The block manager service.
* @param \Drupal\Core\Plugin\Context\ContextHandlerInterface $context_handler
* The context handler service.
* @param \Drupal\Core\Plugin\Context\ContextRepositoryInterface $context_repository
* The context repository service.
*/
public function __construct(array $configuration, $plugin_id, $plugin_definition, Token $token, ModuleHandlerInterface $module_handler, RouteMatchInterface $current_route_match, EntityTypeManagerInterface $entity_type_manager, EntityFieldManagerInterface $entity_field_manager, BlockManagerInterface $block_manager, ContextHandlerInterface $context_handler, ContextRepositoryInterface $context_repository) {
parent::__construct($configuration, $plugin_id, $plugin_definition, $token, $module_handler, $current_route_match, $entity_type_manager, $entity_field_manager);
$this->blockManager = $block_manager;
$this->contextHandler = $context_handler;
$this->contextRepository = $context_repository;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('token'), $container
->get('module_handler'), $container
->get('current_route_match'), $container
->get('entity_type.manager'), $container
->get('entity_field.manager'), $container
->get('plugin.manager.block'), $container
->get('context.handler'), $container
->get('context.repository'));
}
/**
* {@inheritdoc}
*/
public function defaultConfiguration() {
return [
'block_type' => NULL,
'block_config' => [],
] + parent::defaultConfiguration();
}
/**
* {@inheritdoc}
*/
public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
$form = parent::buildConfigurationForm($form, $form_state);
$form_state
->setTemporaryValue('gathered_contexts', $this->contextRepository
->getAvailableContexts());
$block_type = $this
->getPluginFormStateValue('block_type', $form_state);
$form['block_type'] = [
'#type' => 'select',
'#title' => $this
->t('Block Type'),
'#required' => TRUE,
'#options' => $this
->getBlockTypeOptions(),
'#empty_option' => $this
->t('- Select -'),
'#ajax' => [
'event' => 'change',
'method' => 'replace',
] + $this
->extraFieldPluginAjax(),
'#default_value' => $block_type,
];
if (isset($block_type) && !empty($block_type)) {
if ($this->blockManager
->hasDefinition($block_type)) {
$block_config = $this
->getPluginFormStateValue('block_config', $form_state, []);
$block_instance = $this->blockManager
->createInstance($block_type, $block_config);
if ($block_instance instanceof PluginFormInterface) {
$form['block_config'] = [
'#type' => 'fieldset',
'#title' => $this
->t('Block Configuration'),
'#tree' => TRUE,
];
$subform = [
'#parents' => array_merge($form['#parents'], [
'block_config',
]),
];
$form['block_config'] += $block_instance
->buildConfigurationForm($subform, SubformState::createForSubform($subform, $form, $form_state));
}
}
}
return $form;
}
/**
* {@inheritdoc}
*/
public function validateConfigurationForm(array &$form, FormStateInterface $form_state) {
parent::validateConfigurationForm($form, $form_state);
$block_instance = $this
->getBlockTypeInstance();
if ($block_instance !== FALSE) {
if ($block_instance instanceof PluginFormInterface) {
$subform = [
'#parents' => array_merge($form['#parents'], [
'block_config',
]),
];
$block_instance
->validateConfigurationForm($subform, SubformState::createForSubform($subform, $form, $form_state));
}
}
}
/**
* {@inheritdoc}
*/
public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
parent::submitConfigurationForm($form, $form_state);
$block_instance = $this
->getBlockTypeInstance();
if ($block_instance !== FALSE) {
if ($block_instance instanceof PluginFormInterface) {
$subform = [
'#parents' => array_merge($form['#parents'], [
'block_config',
]),
];
$block_instance
->submitConfigurationForm($subform, SubformState::createForSubform($subform, $form, $form_state));
$form_state
->setValue([
'block_config',
], $block_instance
->getConfiguration());
}
}
}
/**
* {@inheritdoc}
*/
public function build(EntityInterface $entity, EntityDisplayInterface $display) {
$block = $this
->getBlockTypeInstance();
if (FALSE === $block) {
return [];
}
if ($block instanceof ContextAwarePluginInterface) {
try {
if ($context_mapping = $block
->getContextMapping()) {
$contexts = $this->contextRepository
->getRuntimeContexts(array_values($context_mapping));
$this->contextHandler
->applyContextMapping($block, $contexts);
}
} catch (\Exception $exception) {
watchdog_exception('entity_extra_field', $exception);
}
}
return $block
->build();
}
/**
* {@inheritdoc}
*/
public function calculateDependencies() {
if ($block_type_instance = $this
->getBlockTypeInstance()) {
$this
->calculatePluginDependencies($block_type_instance);
}
return parent::calculateDependencies();
}
/**
* Get block type instance.
*
* @return bool|\Drupal\Core\Block\BlockBase
* The block instance; otherwise FALSE if type is not defined.
*
* @throws \Drupal\Component\Plugin\Exception\PluginException
*/
protected function getBlockTypeInstance() {
$config = $this
->getConfiguration();
if (!isset($config['block_type'])) {
return FALSE;
}
return $this->blockManager
->createInstance($config['block_type'], $config['block_config']);
}
/**
* Get block type options.
*
* @param array $excluded_ids
* An array of block ids to exclude.
*
* @return array
* An array of block type options.
*/
protected function getBlockTypeOptions($excluded_ids = []) {
$options = [];
// There are a couple block ids that are excluded by default as either
// they're not really needed, or they are causing problems when selected.
$excluded_ids = [
'broken',
'system_branding_block',
] + $excluded_ids;
foreach ($this->blockManager
->getDefinitions() as $block_id => $definition) {
if (!isset($definition['admin_label']) || in_array($block_id, $excluded_ids)) {
continue;
}
$category = isset($definition['category']) ? $definition['category'] : $this
->t('Undefined');
$options[(string) $category][$block_id] = $definition['admin_label'];
}
return $options;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
DependencyTrait:: |
protected | property | The object's dependencies. | |
DependencyTrait:: |
protected | function | Adds multiple dependencies. | |
DependencyTrait:: |
protected | function | Adds a dependency. | |
ExtraFieldBlockPlugin:: |
protected | property | ||
ExtraFieldBlockPlugin:: |
protected | property | ||
ExtraFieldBlockPlugin:: |
protected | property | ||
ExtraFieldBlockPlugin:: |
public | function |
Build the render array of the extra field type contents. Overrides ExtraFieldTypePluginInterface:: |
|
ExtraFieldBlockPlugin:: |
public | function |
Form constructor. Overrides ExtraFieldTypePluginBase:: |
|
ExtraFieldBlockPlugin:: |
public | function |
Calculates dependencies for the configured plugin. Overrides ExtraFieldTypePluginBase:: |
|
ExtraFieldBlockPlugin:: |
public static | function |
Creates an instance of the plugin. Overrides ExtraFieldTypePluginBase:: |
|
ExtraFieldBlockPlugin:: |
public | function |
Gets default configuration for this plugin. Overrides ExtraFieldTypePluginBase:: |
|
ExtraFieldBlockPlugin:: |
protected | function | Get block type instance. | |
ExtraFieldBlockPlugin:: |
protected | function | Get block type options. | |
ExtraFieldBlockPlugin:: |
public | function |
Form submission handler. Overrides ExtraFieldTypePluginBase:: |
|
ExtraFieldBlockPlugin:: |
public | function |
Form validation handler. Overrides ExtraFieldTypePluginBase:: |
|
ExtraFieldBlockPlugin:: |
public | function |
Extra field block plugin constructor. Overrides ExtraFieldTypePluginBase:: |
|
ExtraFieldTypePluginBase:: |
protected | property | ||
ExtraFieldTypePluginBase:: |
protected | property | ||
ExtraFieldTypePluginBase:: |
protected | property | ||
ExtraFieldTypePluginBase:: |
protected | property | ||
ExtraFieldTypePluginBase:: |
protected | property | ||
ExtraFieldTypePluginBase:: |
protected | function | Get extra field plugin ajax properties. | |
ExtraFieldTypePluginBase:: |
public | function | Get extra field plugin ajax. | |
ExtraFieldTypePluginBase:: |
public | function |
Gets this plugin's configuration. Overrides ConfigurableInterface:: |
|
ExtraFieldTypePluginBase:: |
protected | function | Get entity field reference types. | |
ExtraFieldTypePluginBase:: |
protected | function | Get entity token data. | |
ExtraFieldTypePluginBase:: |
protected | function | Get entity token types. | |
ExtraFieldTypePluginBase:: |
protected | function | Get plugin form state value. | |
ExtraFieldTypePluginBase:: |
protected | function | Get target entity type bundle. | |
ExtraFieldTypePluginBase:: |
protected | function | Get target entity type definition. | |
ExtraFieldTypePluginBase:: |
protected | function | Get target entity type identifier. | |
ExtraFieldTypePluginBase:: |
public | function |
Display the extra field plugin label. Overrides ExtraFieldTypePluginInterface:: |
|
ExtraFieldTypePluginBase:: |
protected | function | Process the entity token text. | |
ExtraFieldTypePluginBase:: |
public | function |
Sets the configuration for this plugin instance. Overrides ConfigurableInterface:: |
|
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
3 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
PluginDependencyTrait:: |
protected | function | Calculates and adds dependencies of a specific plugin instance. | 1 |
PluginDependencyTrait:: |
protected | function | Calculates and returns dependencies of a specific plugin instance. | |
PluginDependencyTrait:: |
protected | function | Wraps the module handler. | 1 |
PluginDependencyTrait:: |
protected | function | Wraps the theme handler. | 1 |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. |