-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprovider.php
More file actions
53 lines (49 loc) · 2.13 KB
/
Copy pathprovider.php
File metadata and controls
53 lines (49 loc) · 2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
/*
This file contains classes which extend the functionality of Fusio. If you
register a new adapter and this adapter provides such a class, Fusio will
automatically add the class to this file. You can also manually add a new
class. The following list contains an explanation of each extension point:
- action
Contains all action classes which are available at the backend. If a class is
registered here the user can select this action. The class must implement the
interface: Fusio\Engine\ActionInterface
- connection
Contains all connection classes which are available at the backend. If a class
is registered here the user can select this connection. The class must
implement the interface: Fusio\Engine\ConnectionInterface
- payment
Contains all available payment provider. Through a payment provider it is
possible to charge for points which can be required for specific routes. The
class must implement the interface: Fusio\Engine\Payment\ProviderInterface
- user
Contains all available user provider. Through a user provider a user can
authenticate with a remote provider i.e. Google. The class must implement the
interface: Fusio\Engine\User\ProviderInterface
*/
return [
'action' => [
\Fusio\Adapter\File\Action\FileProcessor::class,
\Fusio\Adapter\Http\Action\HttpProcessor::class,
\Fusio\Adapter\Php\Action\PhpProcessor::class,
\Fusio\Adapter\Php\Action\PhpSandbox::class,
\Fusio\Adapter\Sql\Action\SqlTable::class,
\Fusio\Adapter\Util\Action\UtilStaticResponse::class,
],
'connection' => [
\Fusio\Adapter\File\Connection\Ftp::class,
\Fusio\Adapter\GraphQL\Connection\GraphQL::class,
\Fusio\Adapter\Http\Connection\Http::class,
\Fusio\Adapter\Smtp\Connection\Smtp::class,
\Fusio\Adapter\Soap\Connection\Soap::class,
\Fusio\Adapter\Sql\Connection\Sql::class,
\Fusio\Adapter\Sql\Connection\SqlAdvanced::class,
],
'payment' => [
],
'user' => [
\Fusio\Impl\Provider\User\Facebook::class,
\Fusio\Impl\Provider\User\Github::class,
\Fusio\Impl\Provider\User\Google::class,
],
];