public function MigrationBase::saveMailSystem in Migrate 7.2
Saves the current mail system, or set a system default if there is none.
1 call to MigrationBase::saveMailSystem()
- MigrationBase::beginProcess in includes/
base.inc - Begin a process, ensuring only one process can be active at once on a given migration.
File
- includes/
base.inc, line 1424 - Defines the base class for migration processes.
Class
- MigrationBase
- The base class for all objects representing distinct steps in a migration process. Most commonly these will be Migration objects which actually import data from a source into a Drupal destination, but by deriving classes directly from MigrationBase…
Code
public function saveMailSystem() {
global $conf;
$this->mailSystem = empty($conf['mail_system']) ? NULL : $conf['mail_system'];
}