Mercurial > hg > isophonics-drupal-site
view core/modules/migrate/src/ProcessPluginBase.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 |
line wrap: on
line source
<?php namespace Drupal\migrate; use Drupal\Core\Plugin\PluginBase; use Drupal\migrate\Plugin\MigrateProcessInterface; /** * The base class for all migrate process plugins. * * Migrate process plugins are taking a value and transform them. For example, * transform a human provided name into a machine name, look up an identifier * in a previous migration and so on. * * @see https://www.drupal.org/node/2129651 * @see \Drupal\migrate\Plugin\MigratePluginManager * @see \Drupal\migrate\Plugin\MigrateProcessInterface * @see \Drupal\migrate\Annotation\MigrateProcessPlugin * @see plugin_api * * @ingroup migration */ abstract class ProcessPluginBase extends PluginBase implements MigrateProcessInterface { /** * {@inheritdoc} */ public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) { // Do not call this method from children. if (isset($this->configuration['method'])) { if (method_exists($this, $this->configuration['method'])) { return $this->{$this->configuration['method']}($value, $migrate_executable, $row, $destination_property); } throw new \BadMethodCallException(sprintf('The %s method does not exist in the %s plugin.', $this->configuration['method'], $this->pluginId)); } else { throw new \BadMethodCallException(sprintf('The "method" key in the plugin configuration must to be set for the %s plugin.', $this->pluginId)); } } /** * {@inheritdoc} */ public function multiple() { return FALSE; } }