__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace Packback\Lti1p3\Interfaces;
use Packback\Lti1p3\LtiMessageLaunch;
/**
* This is an optional interface if an LTI 1.3 tool supports migrations
* from LTI 1.1 compatible installations.
*
* To use this, just have whatever class you create that implements IDatabase
* also implement this interface.
*/
interface IMigrationDatabase extends IDatabase
{
/**
* Using the LtiMessageLaunch return an array of matching LTI 1.1 keys
*
* @return array<\Packback\Lti1p3\Lti1p1Key>
*/
public function findLti1p1Keys(LtiMessageLaunch $launch): array;
/**
* Given an LtiMessageLaunch, return true if this tool should migrate from 1.1 to 1.3
*/
public function shouldMigrate(LtiMessageLaunch $launch): bool;
/**
* This method should create a 1.3 deployment in your DB based on the LtiMessageLaunch.
* Previous to this, we validated the oauth_consumer_key_sign to ensure this migration
* can safely occur.
*/
public function migrateFromLti1p1(LtiMessageLaunch $launch): ?ILtiDeployment;
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| ICache.php | File | 537 B | 0777 |
|
| ICookie.php | File | 227 B | 0777 |
|
| IDatabase.php | File | 289 B | 0777 |
|
| ILtiDeployment.php | File | 201 B | 0777 |
|
| ILtiRegistration.php | File | 1008 B | 0777 |
|
| ILtiServiceConnector.php | File | 883 B | 0777 |
|
| IMessageValidator.php | File | 271 B | 0777 |
|
| IMigrationDatabase.php | File | 1.04 KB | 0777 |
|
| IServiceRequest.php | File | 785 B | 0777 |
|