public static function MigrateYoutubeFieldHandler::arguments in YouTube Field 7
Arguments for a YouTube field migration.
Parameters
string $input: The URL of the YouTube video. If a value is not supplied, this will be constructed from the $video_id.
Return value
array An array of the defined variables in this scope.
File
- ./
youtube.migrate.inc, line 41 - YouTube Field support for use with the migrate module.
Class
- MigrateYoutubeFieldHandler
- Extend MigrateFieldHandler for YouTube fields.
Code
public static function arguments($input = NULL) {
return get_defined_vars();
}