abstract class ActionLinkTypeBase in Flag 8.4
Provides a base class for all link types.
Link types perform two key functions within Flag: They specify the route to use when a flag link is clicked, and generate the render array to display flag links.
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\flag\ActionLink\ActionLinkTypeBase implements ContainerFactoryPluginInterface, ActionLinkTypePluginInterface uses RedirectDestinationTrait, StringTranslationTrait
Expanded class hierarchy of ActionLinkTypeBase
2 files declare their use of ActionLinkTypeBase
- FormEntryTypeBase.php in src/
Plugin/ ActionLink/ FormEntryTypeBase.php - Reload.php in src/
Plugin/ ActionLink/ Reload.php
File
- src/
ActionLink/ ActionLinkTypeBase.php, line 25
Namespace
Drupal\flag\ActionLinkView source
abstract class ActionLinkTypeBase extends PluginBase implements ActionLinkTypePluginInterface, ContainerFactoryPluginInterface {
/**
* The current user.
*
* @var \Drupal\Core\Session\AccountInterface
*/
protected $currentUser;
use StringTranslationTrait;
use RedirectDestinationTrait;
/**
* Build a new link type instance and sets the configuration.
*
* @param array $configuration
* The configuration array with which to initialize this plugin.
* @param string $plugin_id
* The ID with which to initialize this plugin.
* @param array $plugin_definition
* The plugin definition array.
* @param \Drupal\Core\Session\AccountInterface $current_user
* The current user.
*/
public function __construct(array $configuration, $plugin_id, array $plugin_definition, AccountInterface $current_user) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->configuration += $this
->defaultConfiguration();
$this->currentUser = $current_user;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('current_user'));
}
/**
* Return a Url object for the given flag action.
*
* @param string $action
* The action, flag or unflag.
* @param \Drupal\flag\FlagInterface $flag
* The flag entity.
* @param \Drupal\Core\Entity\EntityInterface $entity
* The flaggable entity.
*
* @return Url
* The Url object for this plugin's flag/unflag route.
*/
protected abstract function getUrl($action, FlagInterface $flag, EntityInterface $entity);
/**
* {@inheritdoc}
*/
public function getAsLink(FlagInterface $flag, EntityInterface $entity) {
$action = $this
->getAction($flag, $entity);
$url = $this
->getUrl($action, $flag, $entity);
$url
->setOption('query', [
'destination' => $this
->getDestination(),
]);
$title = $flag
->getShortText($action);
return Link::fromTextAndUrl($title, $url);
}
/**
* {@inheritdoc}
*/
public function getAsFlagLink(FlagInterface $flag, EntityInterface $entity) {
$action = $this
->getAction($flag, $entity);
$access = $flag
->actionAccess($action, $this->currentUser, $entity);
if ($access
->isAllowed()) {
$url = $this
->getUrl($action, $flag, $entity);
$url
->setRouteParameter('destination', $this
->getDestination());
$render = [
'#theme' => 'flag',
'#flag' => $flag,
'#flaggable' => $entity,
'#action' => $action,
'#access' => $access
->isAllowed(),
// Use render array for title to allow limited markup in the link text.
'#title' => [
'#markup' => $flag
->getShortText($action),
],
'#attributes' => [
'title' => $flag
->getLongText($action),
],
];
// Build the URL. It is important that bubbleable metadata is explicitly
// collected and applied to the render array, as it might be rendered on
// its own, for example in an ajax response. Specifically, this is
// necessary for CSRF token placeholder replacements.
$rendered_url = $url
->toString(TRUE);
$rendered_url
->applyTo($render);
$render['#attributes']['href'] = $rendered_url
->getGeneratedUrl();
}
else {
$render = [];
}
CacheableMetadata::createFromRenderArray($render)
->addCacheableDependency($access)
->applyTo($render);
return $render;
}
/**
* Helper method to get the next flag action the user can take.
*
* @param string $action
* The action, flag or unflag.
* @param \Drupal\flag\FlagInterface $flag
* The flag entity.
*
* @return string
*/
protected function getAction(FlagInterface $flag, EntityInterface $entity) {
return $flag
->isFlagged($entity) ? 'unflag' : 'flag';
}
/**
* Helper method to generate a destination URL parameter.
*
* @return string
* A string containing a destination URL parameter.
*/
protected function getDestination() {
return $this
->getRedirectDestination()
->get();
}
/**
* {@inheritdoc}
*/
public function calculateDependencies() {
return [];
}
/**
* Provides a form array for the action link plugin's settings form.
*
* Derived classes will want to override this method.
*
* @param array $form
* The form array.
* @param FormStateInterface $form_state
* The form state.
*
* @return array
* The modified form array.
*/
public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
return $form;
}
/**
* Processes the action link setting form submit.
*
* Derived classes will want to override this method.
*
* @param array $form
* The form array.
* @param \Drupal\Core\Form\FormStateInterface $form_state
* The form state.
*/
public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
// Override this.
}
/**
* Validates the action link setting form.
*
* Derived classes will want to override this method.
*
* @param array $form
* The form array.
* @param \Drupal\Core\Form\FormStateInterface $form_state
* The form state.
*/
public function validateConfigurationForm(array &$form, FormStateInterface $form_state) {
// Override this.
}
/**
* {@inheritdoc}
*/
public function defaultConfiguration() {
return [];
}
/**
* {@inheritdoc}
*/
public function getConfiguration() {
return $this->configuration;
}
/**
* {@inheritdoc}
*/
public function setConfiguration(array $configuration) {
$this->configuration = NestedArray::mergeDeep($this
->defaultConfiguration(), $configuration);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ActionLinkTypeBase:: |
protected | property | The current user. | |
ActionLinkTypeBase:: |
public | function |
Provides a form array for the action link plugin's settings form. Overrides PluginFormInterface:: |
1 |
ActionLinkTypeBase:: |
public | function | ||
ActionLinkTypeBase:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
1 |
ActionLinkTypeBase:: |
public | function |
Gets default configuration for this plugin. Overrides ConfigurableInterface:: |
1 |
ActionLinkTypeBase:: |
protected | function | Helper method to get the next flag action the user can take. | |
ActionLinkTypeBase:: |
public | function |
Get the action link formatted for use in entity links. Overrides ActionLinkTypePluginInterface:: |
2 |
ActionLinkTypeBase:: |
public | function |
Get the action link as a Link object. Overrides ActionLinkTypePluginInterface:: |
|
ActionLinkTypeBase:: |
public | function |
Gets this plugin's configuration. Overrides ConfigurableInterface:: |
|
ActionLinkTypeBase:: |
protected | function | Helper method to generate a destination URL parameter. | 1 |
ActionLinkTypeBase:: |
abstract protected | function | Return a Url object for the given flag action. | 3 |
ActionLinkTypeBase:: |
public | function |
Sets the configuration for this plugin instance. Overrides ConfigurableInterface:: |
|
ActionLinkTypeBase:: |
public | function |
Processes the action link setting form submit. Overrides PluginFormInterface:: |
1 |
ActionLinkTypeBase:: |
public | function |
Validates the action link setting form. Overrides PluginFormInterface:: |
1 |
ActionLinkTypeBase:: |
public | function |
Build a new link type instance and sets the configuration. Overrides PluginBase:: |
1 |
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. | |
RedirectDestinationTrait:: |
protected | property | The redirect destination service. | 1 |
RedirectDestinationTrait:: |
protected | function | Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url. | |
RedirectDestinationTrait:: |
protected | function | Returns the redirect destination service. | |
RedirectDestinationTrait:: |
public | function | Sets the redirect destination service. | |
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. |