| Server IP : 104.21.80.248 / Your IP : 172.71.28.155 Web Server : Apache/2.4.25 (Win32) OpenSSL/1.0.2j PHP/5.6.30 System : Windows NT WIN-ECQAAA40806 6.2 build 9200 (Windows Server 2012 Standard Edition) i586 User : SYSTEM ( 0) PHP Version : 5.6.30 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : E:/Inetpub/www/myschool/triamudom/tuprblearn/lib/ltiprovider/src/ToolProvider/ |
Upload File : |
<?php
namespace IMSGlobal\LTI\ToolProvider;
/**
* Class to represent an outcome
*
* @author Stephen P Vickers <[email protected]>
* @copyright IMS Global Learning Consortium Inc
* @date 2016
* @version 3.0.2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
*/
class Outcome
{
/**
* Language value.
*
* @var string $language
*/
public $language = null;
/**
* Outcome status value.
*
* @var string $status
*/
public $status = null;
/**
* Outcome date value.
*
* @var string $date
*/
public $date = null;
/**
* Outcome type value.
*
* @var string $type
*/
public $type = null;
/**
* Outcome data source value.
*
* @var string $dataSource
*/
public $dataSource = null;
/**
* Outcome value.
*
* @var string $value
*/
private $value = null;
/**
* Class constructor.
*
* @param string $value Outcome value (optional, default is none)
*/
public function __construct($value = null)
{
$this->value = $value;
$this->language = 'en-US';
$this->date = gmdate('Y-m-d\TH:i:s\Z', time());
$this->type = 'decimal';
}
/**
* Get the outcome value.
*
* @return string Outcome value
*/
public function getValue()
{
return $this->value;
}
/**
* Set the outcome value.
*
* @param string $value Outcome value
*/
public function setValue($value)
{
$this->value = $value;
}
}