You are here

public function MigrateGroup::__construct in Migrate 7.2

Same name and namespace in other branches
  1. 6.2 includes/group.inc \MigrateGroup::__construct()

Basic constructor.

Parameters

string $name: Group name.

array $dependencies: List of dependent groups.

File

includes/group.inc, line 100
Definition for a migration group.

Class

MigrateGroup
@file Definition for a migration group.

Code

public function __construct($name, $dependencies = array(), $title = '', $arguments = array()) {
  $this->name = $name;
  $this->title = $title;
  $this->arguments = $arguments;
  $this->dependencies = $dependencies;
}