You are here

class DomainSourceNodeHandler in Domain Access 7.3

Hierarchy

Expanded class hierarchy of DomainSourceNodeHandler

1 string reference to 'DomainSourceNodeHandler'
domain_source_migrate_api in domain_source/domain_source.migrate.inc
Implements hook_migrate_api().

File

domain_source/domain_source.migrate.inc, line 20
Support for domain source in node migrations.

View source
class DomainSourceNodeHandler extends MigrateDestinationHandler {
  public function __construct() {
    $this
      ->registerTypes(array(
      'node',
    ));
  }
  public function fields() {
    return array(
      'domain_source' => t('Domain: Domain Source'),
    );
  }

}

Members

Namesort descending Modifiers Type Description Overrides
DomainSourceNodeHandler::fields public function
DomainSourceNodeHandler::__construct public function Overrides MigrateHandler::__construct
MigrateHandler::$dependencies protected property List of other handler classes which should be invoked before the current one.
MigrateHandler::$typesHandled protected property List of "types" handled by this handler. Depending on the kind of handler, these may be destination types, field types, etc.
MigrateHandler::getDependencies public function
MigrateHandler::getTypesHandled public function
MigrateHandler::handlesType public function Does this handler handle the given type? 1
MigrateHandler::registerTypes protected function Register a list of types handled by this class