You are here

public static function MigrateDestinationComment::options in Migrate 6.2

Same name and namespace in other branches
  1. 7.2 plugins/destinations/comment.inc \MigrateDestinationComment::options()

Return an options array for comment destinations.

Parameters

string $language: Default language for comments created via this destination class.

string $text_format: Default text format for comments created via this destination class.

File

plugins/destinations/comment.inc, line 33
Support for comment destinations.

Class

MigrateDestinationComment
Destination class implementing migration into comments.

Code

public static function options($language, $text_format) {
  return compact('language', 'text_format');
}