ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
IMSGlobal\LTI\Profile\Item Class Reference

Class to represent a generic item object. More...

+ Collaboration diagram for IMSGlobal\LTI\Profile\Item:

Public Member Functions

 __construct ($id=null, $name=null, $description=null, $url=null, $version=null, $timestamp=null)
 Class constructor. More...
 

Data Fields

 $id = null
 ID of item. More...
 
 $name = null
 Name of item. More...
 
 $description = null
 Description of item. More...
 
 $url = null
 URL of item. More...
 
 $version = null
 Version of item. More...
 
 $timestamp = null
 Timestamp of item. More...
 

Detailed Description

Class to represent a generic item object.

Author
Stephen P Vickers svick.nosp@m.ers@.nosp@m.imsgl.nosp@m.obal.nosp@m..org
Date
2016
Version
3.0.0 http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0

Definition at line 14 of file Item.php.

Constructor & Destructor Documentation

◆ __construct()

IMSGlobal\LTI\Profile\Item::__construct (   $id = null,
  $name = null,
  $description = null,
  $url = null,
  $version = null,
  $timestamp = null 
)

Class constructor.

Parameters
string$idID of item (optional)
string$nameName of item (optional)
string$descriptionDescription of item (optional)
string$urlURL of item (optional)
string$versionVersion of item (optional)
int$timestampTimestamp of item (optional)

Definition at line 65 of file Item.php.

References IMSGlobal\LTI\Profile\Item\$description, IMSGlobal\LTI\Profile\Item\$id, IMSGlobal\LTI\Profile\Item\$name, IMSGlobal\LTI\Profile\Item\$timestamp, IMSGlobal\LTI\Profile\Item\$url, and IMSGlobal\LTI\Profile\Item\$version.

66  {
67 
68  $this->id = $id;
69  $this->name = $name;
70  $this->description = $description;
71  $this->url = $url;
72  $this->version = $version;
73  $this->timestamp = $timestamp;
74 
75  }
$name
Name of item.
Definition: Item.php:28
$description
Description of item.
Definition: Item.php:34
$url
URL of item.
Definition: Item.php:40
$timestamp
Timestamp of item.
Definition: Item.php:52
$version
Version of item.
Definition: Item.php:46

Field Documentation

◆ $description

string IMSGlobal\LTI\Profile\Item::$description = null

Description of item.

Definition at line 34 of file Item.php.

Referenced by IMSGlobal\LTI\Profile\Item\__construct().

◆ $id

string IMSGlobal\LTI\Profile\Item::$id = null

ID of item.

Definition at line 22 of file Item.php.

Referenced by IMSGlobal\LTI\Profile\Item\__construct().

◆ $name

string IMSGlobal\LTI\Profile\Item::$name = null

Name of item.

Definition at line 28 of file Item.php.

Referenced by IMSGlobal\LTI\Profile\Item\__construct().

◆ $timestamp

int IMSGlobal\LTI\Profile\Item::$timestamp = null

Timestamp of item.

Definition at line 52 of file Item.php.

Referenced by IMSGlobal\LTI\Profile\Item\__construct().

◆ $url

string IMSGlobal\LTI\Profile\Item::$url = null

URL of item.

Definition at line 40 of file Item.php.

Referenced by IMSGlobal\LTI\Profile\Item\__construct().

◆ $version

string IMSGlobal\LTI\Profile\Item::$version = null

Version of item.

Definition at line 46 of file Item.php.

Referenced by IMSGlobal\LTI\Profile\Item\__construct().


The documentation for this class was generated from the following file: