LTI Integration Library 4.10.3
PHP class library for building LTI integrations
 
Loading...
Searching...
No Matches
ApiPlatform.php
1<?php
2
3namespace ceLTIc\LTI\ApiHook;
4
6
15{
16
22 protected $platform = null;
23
29 public function __construct($platform)
30 {
31 $this->platform = $platform;
32 }
33
39 public function isConfigured()
40 {
41 return true;
42 }
43
51 public function getToolSettings($simple = true)
52 {
53 return false;
54 }
55
63 public function setToolSettings($settings = array())
64 {
65 return false;
66 }
67
68}
Trait to handle API hook registrations.
Definition ApiHook.php:13
Class to implement services for a platform via its proprietary API.
__construct($platform)
Class constructor.
isConfigured()
Check if the API hook has been configured.
setToolSettings($settings=array())
Perform a Tool Settings service request.
getToolSettings($simple=true)
Get Tool Settings.
Class to represent a platform.
Definition Platform.php:18