Custom user fields during registration and profile edit #711
This commit is contained in:
@@ -90,7 +90,7 @@ abstract class BaseImporter
|
||||
$idx = $start + 1;
|
||||
|
||||
$manifest[] = [
|
||||
'importer' => get_class($this),
|
||||
'importer' => static::class,
|
||||
'start' => $start,
|
||||
'end' => $end,
|
||||
'message' => 'Importing '.$this->table.' ('.$idx.' - '.$end.' of '.$total_rows.')',
|
||||
|
||||
@@ -33,7 +33,7 @@ class ClearDatabase extends BaseImporter
|
||||
{
|
||||
return [
|
||||
[
|
||||
'importer' => get_class($this),
|
||||
'importer' => static::class,
|
||||
'start' => 0,
|
||||
'end' => 1,
|
||||
'message' => 'Clearing database',
|
||||
|
||||
@@ -16,7 +16,7 @@ class FinalizeImporter extends BaseImporter
|
||||
{
|
||||
return [
|
||||
[
|
||||
'importer' => get_class($this),
|
||||
'importer' => static::class,
|
||||
'start' => 0,
|
||||
'end' => 1,
|
||||
'message' => 'Finalizing import',
|
||||
|
||||
Reference in New Issue
Block a user