From cc0a24617d18e69e0def96fe6c2b83c11ec812d3 Mon Sep 17 00:00:00 2001 From: Sean Harvey Date: Mon, 26 Jan 2009 23:55:06 +0000 Subject: [PATCH] MINOR Added important piece of information for where the callback method should be defined for duplicate checks in BulkLoader git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.3@70761 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- dev/BulkLoader.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev/BulkLoader.php b/dev/BulkLoader.php index 1cf380a10..0db8cd532 100644 --- a/dev/BulkLoader.php +++ b/dev/BulkLoader.php @@ -93,7 +93,8 @@ abstract class BulkLoader extends ViewableData { * Specifies how to determine duplicates based on one or more provided fields * in the imported data, matching to properties on the used {@link DataObject} class. * Alternatively the array values can contain a callback method (see example for - * implementation details). + * implementation details). The callback method should be defined on the source class. + * * If multiple checks are specified, the first one "wins". * *