Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/monara/public_html/test.athavaneng.com/themes.php on line 99

Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 226

Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 227

Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 228

Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 229

Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 230

Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 231
* @copyright IMS Global Learning Consortium Inc * @date 2016 * @version 3.0.0 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0 */ class Message { /** * LTI message type. * * @var string $type */ public $type = null; /** * Path to send message request to (used in conjunction with a base URL for the Tool Provider). * * @var string $path */ public $path = null; /** * Capabilities required by message. * * @var array $capabilities */ public $capabilities = null; /** * Variable parameters to accompany message request. * * @var array $variables */ public $variables = null; /** * Fixed parameters to accompany message request. * * @var array $constants */ public $constants = null; /** * Class constructor. * * @param string $type LTI message type * @param string $path Path to send message request to * @param array $capabilities Array of capabilities required by message * @param array $variables Array of variable parameters to accompany message request * @param array $constants Array of fixed parameters to accompany message request */ function __construct($type, $path, $capabilities = array(), $variables = array(), $constants = array()) { $this->type = $type; $this->path = $path; $this->capabilities = $capabilities; $this->variables = $variables; $this->constants = $constants; } }