You are here

team.inc in Migrate 6.2

Same filename and directory in other branches
  1. 7.2 includes/team.inc

Info on migration team members. Display-only at the moment, but eventually there should be notification features.

File

includes/team.inc
View source
<?php

/**
 * @file
 * Info on migration team members. Display-only at the moment, but eventually
 * there should be notification features.
 */
class MigrateTeamMember {
  protected $name;
  public function getName() {
    return $this->name;
  }
  protected $emailAddress;
  public function getEmailAddress() {
    return $this->emailAddress;
  }
  protected $group;
  public function getGroup() {
    return $this->group;
  }
  public function __construct($name, $email_address, $group) {
    $this->name = $name;
    $this->emailAddress = $email_address;
    $this->group = $group;
  }
  public function contact($subject, $text) {

    // TODO
  }

}

Classes

Namesort descending Description
MigrateTeamMember @file Info on migration team members. Display-only at the moment, but eventually there should be notification features.