You are here

static function DateMigrateFieldHandler::arguments in Date 8

Same name and namespace in other branches
  1. 7.3 date.migrate.inc \DateMigrateFieldHandler::arguments()
  2. 7.2 date.migrate.inc \DateMigrateFieldHandler::arguments()

Arguments for a date field migration.

Parameters

string $timezone: Timezone (such as UTC, America/New_York, etc.) to apply.

string $timezone_db: Timezone_db value for the field.

string $rrule: Rule string for a repeating date field.

string $language: Language of the text (defaults to destination language)

Return value

array An array of the defined variables in this scope.

1 call to DateMigrateFieldHandler::arguments()
DateExampleMigration::__construct in date_migrate/date_migrate_example/date_migrate_example.migrate.inc
Sets up the migration.

File

date_migrate/date.migrate.inc, line 34
Support for migration into Date fields.

Class

DateMigrateFieldHandler

Code

static function arguments($timezone = 'UTC', $timezone_db = 'UTC', $rrule = NULL, $language = NULL) {
  return get_defined_vars();
}