You are here

public function Migration::messageCount in Migrate 7.2

Same name and namespace in other branches
  1. 6.2 includes/migration.inc \Migration::messageCount()

Get the number of messages associated with this migration

Return value

int Number of messages.

File

includes/migration.inc, line 1135
Defines the base class for import/rollback processes.

Class

Migration
The base class for all import objects. This is where most of the smarts of the migrate module resides. Migrations are created by deriving from this class, and in the constructor (after calling parent::__construct()) initializing at a minimum the name,…

Code

public function messageCount() {
  return $this->map
    ->messageCount();
}