LTI Integration Library 4.10.3
PHP class library for building LTI integrations
 
Loading...
Searching...
No Matches
ToolProvider.php
1<?php
2
3namespace ceLTIc\LTI;
4
8
19class ToolProvider extends Tool
20{
21
28 const LTI_VERSION1 = 'LTI-1p0';
29
36 const LTI_VERSION2 = 'LTI-2p0';
37
44 {
45 Util::logDebug('Class ceLTIc\LTI\ToolProvider has been deprecated; please use ceLTIc\LTI\Tool instead.', true);
46 parent::__construct($dataConnector);
47 }
48
49}
Class to provide a connection to a persistent store for LTI objects.
$dataConnector
Data connector object.
Definition System.php:71
Class to represent an LTI Tool Provider.
__construct($dataConnector)
Class constructor.
const LTI_VERSION1
LTI version 1 for messages.
const LTI_VERSION2
LTI version 2 for messages.
Class to represent an LTI Tool.
Definition Tool.php:24
Class to implement utility methods.
Definition Util.php:15
static logDebug($message, $showSource=false)
Log a debug message.
Definition Util.php:274