Mercurial > hg > isophonics-drupal-site
annotate core/lib/Drupal/Core/Action/ConfigurableActionBase.php @ 13:5fb285c0d0e3
Update Drupal core to 8.4.7 via Composer. Security update; I *think* we've
been lucky to get away with this so far, as we don't support self-registration
which seems to be used by the so-called "drupalgeddon 2" attack that 8.4.5
was vulnerable to.
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:33:26 +0100 |
parents | 4c8ae668cc8c |
children | af1871eacc83 |
rev | line source |
---|---|
Chris@0 | 1 <?php |
Chris@0 | 2 |
Chris@0 | 3 namespace Drupal\Core\Action; |
Chris@0 | 4 |
Chris@0 | 5 use Drupal\Component\Plugin\ConfigurablePluginInterface; |
Chris@0 | 6 use Drupal\Core\Form\FormStateInterface; |
Chris@0 | 7 use Drupal\Core\Plugin\PluginFormInterface; |
Chris@0 | 8 |
Chris@0 | 9 /** |
Chris@0 | 10 * Provides a base implementation for a configurable Action plugin. |
Chris@0 | 11 */ |
Chris@0 | 12 abstract class ConfigurableActionBase extends ActionBase implements ConfigurablePluginInterface, PluginFormInterface { |
Chris@0 | 13 |
Chris@0 | 14 /** |
Chris@0 | 15 * {@inheritdoc} |
Chris@0 | 16 */ |
Chris@0 | 17 public function __construct(array $configuration, $plugin_id, $plugin_definition) { |
Chris@0 | 18 parent::__construct($configuration, $plugin_id, $plugin_definition); |
Chris@0 | 19 |
Chris@0 | 20 $this->setConfiguration($configuration); |
Chris@0 | 21 } |
Chris@0 | 22 |
Chris@0 | 23 /** |
Chris@0 | 24 * {@inheritdoc} |
Chris@0 | 25 */ |
Chris@0 | 26 public function defaultConfiguration() { |
Chris@0 | 27 return []; |
Chris@0 | 28 } |
Chris@0 | 29 |
Chris@0 | 30 /** |
Chris@0 | 31 * {@inheritdoc} |
Chris@0 | 32 */ |
Chris@0 | 33 public function getConfiguration() { |
Chris@0 | 34 return $this->configuration; |
Chris@0 | 35 } |
Chris@0 | 36 |
Chris@0 | 37 /** |
Chris@0 | 38 * {@inheritdoc} |
Chris@0 | 39 */ |
Chris@0 | 40 public function setConfiguration(array $configuration) { |
Chris@0 | 41 $this->configuration = $configuration + $this->defaultConfiguration(); |
Chris@0 | 42 } |
Chris@0 | 43 |
Chris@0 | 44 /** |
Chris@0 | 45 * {@inheritdoc} |
Chris@0 | 46 */ |
Chris@0 | 47 public function validateConfigurationForm(array &$form, FormStateInterface $form_state) { |
Chris@0 | 48 } |
Chris@0 | 49 |
Chris@0 | 50 /** |
Chris@0 | 51 * {@inheritdoc} |
Chris@0 | 52 */ |
Chris@0 | 53 public function calculateDependencies() { |
Chris@0 | 54 return []; |
Chris@0 | 55 } |
Chris@0 | 56 |
Chris@0 | 57 } |