rabbit_hole-8.x-1.x-dev/src/Plugin/RabbitHoleEntityPluginBase.php
src/Plugin/RabbitHoleEntityPluginBase.php
<?php
namespace Drupal\rabbit_hole\Plugin;
use Drupal\Component\Plugin\PluginBase;
use Drupal\Core\Form\FormStateInterface;
/**
* Base class for Rabbit hole entity plugin plugins.
*/
abstract class RabbitHoleEntityPluginBase extends PluginBase implements RabbitHoleEntityPluginInterface {
/**
* {@inheritdoc}
*/
public function getFormSubmitHandlerAttachLocations(array $form, FormStateInterface $form_state) {
return [['actions', 'submit', '#submit']];
}
/**
* {@inheritdoc}
*/
public function getBundleFormSubmitHandlerAttachLocations(array $form, FormStateInterface $form_state) {
return [['actions', 'submit', '#submit']];
}
/**
* {@inheritdoc}
*/
public function getGlobalConfigFormId() {
return NULL;
}
/**
* {@inheritdoc}
*/
public function getGlobalFormSubmitHandlerAttachLocations(array $form, FormStateInterface $form_state) {
return [['actions', 'submit', '#submit']];
}
/**
* {@inheritdoc}
*/
public function getEntityTokenMap() {
$map = [];
$map[$this->pluginDefinition['entityType']] = $this->pluginDefinition['entityType'];
// @phpstan-ignore-next-line
$bundle = \Drupal::entityTypeManager()
->getDefinition($this->pluginDefinition['entityType'])
->getBundleEntityType();
if (!empty($bundle)) {
$map[$bundle] = $bundle;
}
return $map;
}
}
