You are here

public function CommentNotifyMigrationHandler::fields in Comment Notify 7

Same name and namespace in other branches
  1. 8 comment_notify.migrate.inc \CommentNotifyMigrationHandler::fields()

Make the destination field visible.

File

./comment_notify.migrate.inc, line 19
Migration support for the Comment Notify module.

Class

CommentNotifyMigrationHandler
Field handler.

Code

public function fields() {
  return array(
    'notify' => t('Comment Notify: Whether to send notifications for this comment'),
    'notified' => t('Comment Notify: Whether notifications have been sent for this comment'),
    'notify_hash' => t('Comment Notify: Hash representing this notification'),
  );
}