LTI Integration Library  3.1.0
PHP class library for building LTI integrations
ApiToolConsumer.php
Go to the documentation of this file.
1 <?php
2 
3 namespace ceLTIc\LTI\ApiHook;
4 
14 {
15 
21  protected $consumer = null;
22 
28  public function __construct($consumer)
29  {
30  $this->consumer = $consumer;
31  }
32 
40  public function getToolSettings($simple = true)
41  {
42  return false;
43  }
44 
52  public function setToolSettings($settings = array())
53  {
54  return false;
55  }
56 
57 }
__construct($consumer)
Class constructor.
getToolSettings($simple=true)
Get Tool Settings.
setToolSettings($settings=array())
Perform a Tool Settings service request.
Class to implement Tool Consumer services for a tool consumer via its proprietary API.