This commit is contained in:
Richard Dern
2022-01-12 00:35:37 +01:00
commit 400e3d01f1
1363 changed files with 57778 additions and 0 deletions

30
config/importers.php Executable file
View File

@@ -0,0 +1,30 @@
<?php
/**
* This array provides information about import adapters
*/
return [
/**
* Available adapters
*/
'adapters' => [
/**
* Cyca. Imports a file built by Cyca itself, in the form of a json
* array containing all the data stored for a particular user
*/
'cyca' => [
/**
* Class used as adapter
*/
'adapter' => \App\ImportAdapters\Cyca::class,
/**
* Name of the vue component used in the import form
*/
'view' => 'import-from-cyca',
/**
* Adapter's displayed name
*/
'name' => "Cyca"
]
]
];