richard
/
cyca
Archived
1
0
Fork 0
This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues/pull-requests.
cyca/config/importers.php

31 lines
719 B
PHP
Executable File

<?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"
]
]
];