public function CommentNotifyMigrationHandler::complete in Comment Notify 8
Same name and namespace in other branches
- 7 comment_notify.migrate.inc \CommentNotifyMigrationHandler::complete()
Implements MigrateDestinationHandler::complete().
Parameters
$comment: The comment object taht was just saved.
$row: Raw source data for the migration - ignored.
File
- ./
comment_notify.migrate.inc, line 57 - Migration support for the Comment Notify module.
Class
- CommentNotifyMigrationHandler
- Field handler.
Code
public function complete($comment, $row) {
if (!isset($comment->notified) || $comment->notified) {
comment_notify_mark_comment_as_notified($comment);
}
}