From b0057c77f0db1e531d269520567ec38b91ac12a1 Mon Sep 17 00:00:00 2001 From: Myles Beardsmore Date: Mon, 25 Jan 2016 15:26:25 +1300 Subject: [PATCH] Removed PlayerCsvBulkLoader as importer Removed PlayerCsvBulkLoader as model importer class and replaced it with CsvBulkLoader instead. --- docs/en/02_Developer_Guides/11_Integration/00_CSV_Import.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/02_Developer_Guides/11_Integration/00_CSV_Import.md b/docs/en/02_Developer_Guides/11_Integration/00_CSV_Import.md index 251793eb8..4e2147794 100644 --- a/docs/en/02_Developer_Guides/11_Integration/00_CSV_Import.md +++ b/docs/en/02_Developer_Guides/11_Integration/00_CSV_Import.md @@ -52,7 +52,7 @@ The simplest way to use [api:CsvBulkLoader] is through a [api:ModelAdmin] interf 'Player' ); private static $model_importers = array( - 'Player' => 'PlayerCsvBulkLoader', + 'Player' => 'CsvBulkLoader', ); private static $url_segment = 'players'; }