X7ROOT File Manager
Current Path:
/home/cbholdings/pasukulu/lib/ltiprovider/src/ToolProvider
home
/
cbholdings
/
pasukulu
/
lib
/
ltiprovider
/
src
/
ToolProvider
/
📁
..
📄
ConsumerNonce.php
(1.89 KB)
📄
ContentItem.php
(3.07 KB)
📄
ContentItemImage.php
(843 B)
📄
ContentItemPlacement.php
(1.13 KB)
📄
Context.php
(8.92 KB)
📁
DataConnector
📁
MediaType
📄
OAuthDataStore.php
(2.67 KB)
📄
Outcome.php
(1.45 KB)
📄
ResourceLink.php
(37.55 KB)
📄
ResourceLinkShare.php
(895 B)
📄
ResourceLinkShareKey.php
(4.05 KB)
📁
Service
📄
ToolConsumer.php
(15.66 KB)
📄
ToolProvider.php
(48.94 KB)
📄
ToolProxy.php
(3.44 KB)
📄
User.php
(10.15 KB)
Editing: Outcome.php
<?php namespace IMSGlobal\LTI\ToolProvider; /** * Class to represent an outcome * * @author Stephen P Vickers <svickers@imsglobal.org> * @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 */ #[\AllowDynamicProperties] 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; } }
Upload File
Create Folder