public static function DateMigrateFieldHandler::arguments in Date 7.3
Same name and namespace in other branches
- 8 date_migrate/date.migrate.inc \DateMigrateFieldHandler::arguments()
- 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.
File
- ./
date.migrate.inc, line 39
Class
- DateMigrateFieldHandler
- Support for migration into Date fields.
Code
public static function arguments($timezone = 'UTC', $timezone_db = 'UTC', $rrule = NULL, $language = NULL) {
return get_defined_vars();
}