Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. MigrateIdMapInterface.php

function MigrateIdMapInterface::getMessages

Retrieves a traversable object of messages related to source records.

Parameters

array $source_id_values: (optional) The source identifier keyed values of the record, e.g. ['nid' => 5]. If empty (the default), all messages are retrieved.

int $level: (optional) Message severity. If NULL (the default), retrieve messages of all severities.

Return value

\Traversable Retrieves a traversable object of message objects of unspecified class. Each object has the following public properties:

  • source_row_hash: the hash of the entire serialized source row data.
  • message: the text of the message.
  • level: one of MigrationInterface::MESSAGE_ERROR,

MigrationInterface::MESSAGE_WARNING, MigrationInterface::MESSAGE_NOTICE, MigrationInterface::MESSAGE_INFORMATIONAL.

2 methods override MigrateIdMapInterface::getMessages()
NullIdMap::getMessages in core/modules/migrate/src/Plugin/migrate/id_map/NullIdMap.php
Retrieves a traversable object of messages related to source records.
Sql::getMessages in core/modules/migrate/src/Plugin/migrate/id_map/Sql.php
Retrieves a traversable object of messages related to source records.

File

core/modules/migrate/src/Plugin/MigrateIdMapInterface.php, line 123

Class

MigrateIdMapInterface
Defines an interface for migrate ID mappings.

Namespace

Drupal\migrate\Plugin

Code

public function getMessages(array $source_id_values = [], $level = NULL);

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal