LTI Integration Library  3.1.0
PHP class library for building LTI integrations
ApiResourceLink.php
Go to the documentation of this file.
1 <?php
2 
3 namespace ceLTIc\LTI\ApiHook;
4 
14 {
15 
21  protected $resourceLink = null;
22 
28  public function __construct($resourceLink)
29  {
30  $this->resourceLink = $resourceLink;
31  }
32 
42  public function doOutcomesService($action, $ltiOutcome, $userresult)
43  {
44  return false;
45  }
46 
54  public function getMemberships($withGroups)
55  {
56  return false;
57  }
58 
67  public function getToolSettings($mode = Service\ToolSettings::MODE_CURRENT_LEVEL, $simple = true)
68  {
69  return false;
70  }
71 
79  public function setToolSettings($settings = array())
80  {
81  return false;
82  }
83 
84 }
Class to implement a service.
Definition: Service.php:17
const MODE_CURRENT_LEVEL
Settings at current level mode.