« frdlweb/webfan_webfat_elgg_bridge details
Package name
frdlweb/webfan_webfat_elgg_bridge
Description
Webfan Webfat for elgg Bridge with Hybrid-/Multi- OAuth + CDN with CDN Proxy-Race + frdl.js bridge
Latest version
v0.0.1 (released: 1 year ago)
Composer require command
Available versions
Version | Released | Reference | Size | |
---|---|---|---|---|
dev-main | 1 year ago | 150400c023de7a7ca4b724688040e0da9f39f0fb | 9.71 KB |
|
v0.0.1 | 1 year ago | f767c9e0a63596750d3231c8e1947469a33f4ba9 | 9.57 KB |
|
v0.0.1-beta | 1 year ago | f767c9e0a63596750d3231c8e1947469a33f4ba9 | 9.57 KB |
|
Showing 1 to 3 of 3 entries
Requirements
- php: >=7.1
- composer/installers: ~1.0
Dev Requirements
NoneSuggestions
NoneProvides
NoneConflicts
NoneReplaces
NoneREADME
Webfan Webfat Bridge for Elgg
- Bridge to Webfat Framework, IO4 and Frdlweb
- Autoloads and Autoinstalls classes from servers (cdn, api, ...)
- Look into autoloader.php and the CDN for source codes...
- CDN to mix assets with frdl.js CDN
- Installs class \Webfan\ElggPatch\Controller\CDN::class
- Multi Oauth Providers Login
- Installs class \Webfan\ElggPatch\Controller\Connect::class
- To add an OAuth provider save the settings into a file {plugin-dir}/.config/{providers}.php Example: Add the provider "webfan" in mod/webfan_webfat_elgg_bridge/.config/webfan.php
<?php
return [
'clientId' => '...',
'clientSecret' => '...',
'redirectUri' => 'https://example.com/auth/login/webfan/connect/',
'urlAuthorize' => 'https://webfan.de/apps/oauth2/authorize',
'urlAccessToken' => 'https://webfan.de/apps/oauth2/api/v1/token',
'urlResourceOwnerDetails' => 'https://webfan.de/ocs/v2.php/cloud/user?format=json'
];