ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
Message.php
Go to the documentation of this file.
1<?php
2
4
17{
18
24 public $type = null;
30 public $path = null;
36 public $capabilities = null;
42 public $variables = null;
48 public $constants = null;
49
50
60 function __construct($type, $path, $capabilities = array(), $variables = array(), $constants = array())
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}
An exception for terminatinating execution or to throw for unit testing.
Class to represent a resource handler message object.
Definition: Message.php:17
$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
__construct($type, $path, $capabilities=array(), $variables=array(), $constants=array())
Class constructor.
Definition: Message.php:60
$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