LTI Integration Library  3.1.0
PHP class library for building LTI integrations
ApiToolProvider.php
Go to the documentation of this file.
1 <?php
2 
3 namespace ceLTIc\LTI\ApiHook;
4 
14 {
15 
21  protected $toolProvider = null;
22 
28  public function __construct($toolProvider)
29  {
30  $this->toolProvider = $toolProvider;
31  }
32 
38  public function getUserId()
39  {
40  return '';
41  }
42 
48  public function getContextId()
49  {
50  return '';
51  }
52 
53 }
Class to implement tool consumer specific functions for LTI messages.
__construct($toolProvider)
Class constructor.