dev-master
9999999-devZend Framework 2 module for the learning context client
BSD-2-Clause
The Requires
by Aleksandr
v1.0.1
1.0.1.0Zend Framework 2 module for the learning context client
BSD-2-Clause
The Requires
by Aleksandr
Zend Framework 2 module for the learning context client
This is a small Zend Framework 2 module for xelax90/learning-context-client, (*1)
Install this module with composer, (*2)
composer require xelax90/learning-context-client-module
Add LearningContextClientModule
to your modules array in config/application.config.php
, (*3)
$config = array( 'modules' => array( // ... 'LearningContextClientModule', // ... ), // ... );
Copy the provided local configuration under vendor/xelax90/learning-context-client-module/learning-context.local.php.dist
into your config/autoload
folder and copy it again without the .dist
extension., (*4)
conig/autoload/learning-context.local.php
file.callback_url
. The callback URL is the URL corresponding to the learning-context/callback
route.redirect_after_authentication
. It can be either a full URL or route name. This is the place where the authentication controller will redirect to after successful or unsuccessful authentication. You can use the learning-context/authenticate
route for authentication. Access /learning-context/authenticate
in the browser and the authentication process starts., (*5)
You can access the client via ServiceLocator
using its class name:, (*6)
use LearningContextClient\Client; $client = $container->get(Client::class);
To check wether the user is authenticated, check if the client has a refresh token:, (*7)
$authenticated = $client->getRefreshToken() !== null; if($authenticated){ // authenticated } else { // not authenticated }
For documentation about the client and the Learning Context API consult the respective documentations: * Client: https://github.com/xelax90/learning-context-client * Learning Context: http://learning-context.de/text/19/APIDoc, (*8)
The LearningContextClientModule\Controller\LearningContextController
class triggers authentication events when the callback URL is accessed. It triggers learning-context.authorized
if a refresh token was provided and learning-context.unauthorized
if not., (*9)
Zend Framework 2 module for the learning context client
BSD-2-Clause
Zend Framework 2 module for the learning context client
BSD-2-Clause