class Log
Same name in this branch
- 8.9.x core/lib/Drupal/Core/Database/Log.php \Drupal\Core\Database\Log
Same name in other branches
- 9 core/modules/migrate/src/Plugin/migrate/process/Log.php \Drupal\migrate\Plugin\migrate\process\Log
- 9 core/lib/Drupal/Core/Database/Log.php \Drupal\Core\Database\Log
- 10 core/modules/migrate/src/Plugin/migrate/process/Log.php \Drupal\migrate\Plugin\migrate\process\Log
- 10 core/lib/Drupal/Core/Database/Log.php \Drupal\Core\Database\Log
- 11.x core/modules/migrate/src/Plugin/migrate/process/Log.php \Drupal\migrate\Plugin\migrate\process\Log
- 11.x core/lib/Drupal/Core/Database/Log.php \Drupal\Core\Database\Log
Logs values without changing them.
The log plugin will log the values that are being processed by other plugins.
Example:
process:
bar:
plugin: log
source: foo
Plugin annotation
@MigrateProcessPlugin(
id = "log"
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements \Drupal\Component\Plugin\PluginInspectionInterface, \Drupal\Component\Plugin\DerivativeInspectionInterface
- class \Drupal\Core\Plugin\PluginBase extends \Drupal\Component\Plugin\PluginBase uses \Drupal\Core\StringTranslation\StringTranslationTrait, \Drupal\Core\DependencyInjection\DependencySerializationTrait, \Drupal\Core\Messenger\MessengerTrait
- class \Drupal\migrate\ProcessPluginBase extends \Drupal\Core\Plugin\PluginBase implements \Drupal\migrate\Plugin\MigrateProcessInterface
- class \Drupal\migrate\Plugin\migrate\process\Log extends \Drupal\migrate\ProcessPluginBase
- class \Drupal\migrate\ProcessPluginBase extends \Drupal\Core\Plugin\PluginBase implements \Drupal\migrate\Plugin\MigrateProcessInterface
- class \Drupal\Core\Plugin\PluginBase extends \Drupal\Component\Plugin\PluginBase uses \Drupal\Core\StringTranslation\StringTranslationTrait, \Drupal\Core\DependencyInjection\DependencySerializationTrait, \Drupal\Core\Messenger\MessengerTrait
Expanded class hierarchy of Log
See also
\Drupal\migrate\Plugin\MigrateProcessInterface
15 string references to 'Log'
- d6_node.yml in core/
modules/ node/ migrations/ d6_node.yml - core/modules/node/migrations/d6_node.yml
- d6_node_complete.yml in core/
modules/ node/ migrations/ d6_node_complete.yml - core/modules/node/migrations/d6_node_complete.yml
- d6_node_revision.yml in core/
modules/ node/ migrations/ d6_node_revision.yml - core/modules/node/migrations/d6_node_revision.yml
- d6_node_translation.yml in core/
modules/ content_translation/ migrations/ d6_node_translation.yml - core/modules/content_translation/migrations/d6_node_translation.yml
- d7_node.yml in core/
modules/ node/ migrations/ d7_node.yml - core/modules/node/migrations/d7_node.yml
File
-
core/
modules/ migrate/ src/ Plugin/ migrate/ process/ Log.php, line 28
Namespace
Drupal\migrate\Plugin\migrate\processView source
class Log extends ProcessPluginBase {
/**
* {@inheritdoc}
*/
public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) {
// Log the value.
$migrate_executable->saveMessage($value);
// Pass through the same value we received.
return $value;
}
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overriden Title | Overrides |
---|---|---|---|---|---|
Log::transform | public | function | Performs the associated process. | Overrides ProcessPluginBase::transform | |
PluginInspectionInterface::getPluginDefinition | public | function | Gets the definition of the plugin implementation. | 6 | |
PluginInspectionInterface::getPluginId | public | function | Gets the plugin_id of the plugin instance. | 2 | |
ProcessPluginBase::multiple | public | function | Indicates whether the returned value requires multiple handling. | Overrides MigrateProcessInterface::multiple | 3 |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.