ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
Message.php
Go to the documentation of this file.
1 <?php
2 
3 namespace IMSGlobal\LTI\Profile;
4 
16 class Message
17 {
18 
24  public $type = null;
30  public $path = null;
36  public $capabilities = null;
42  public $variables = null;
48  public $constants = null;
49 
50 
61  {
62 
63  $this->type = $type;
64  $this->path = $path;
65  $this->capabilities = $capabilities;
66  $this->variables = $variables;
67  $this->constants = $constants;
68 
69  }
70 
71 }
$variables
Variable parameters to accompany message request.
Definition: Message.php:42
$constants
Fixed parameters to accompany message request.
Definition: Message.php:48
$type
LTI message type.
Definition: Message.php:24
__construct($type, $path, $capabilities=array(), $variables=array(), $constants=array())
Class constructor.
Definition: Message.php:60
Create styles array
The data for the language used.
Class to represent a resource handler message object.
Definition: Message.php:16
$capabilities
Capabilities required by message.
Definition: Message.php:36
$path
Path to send message request to (used in conjunction with a base URL for the Tool Provider)...
Definition: Message.php:30