LTI Integration Library
3.1.0
PHP class library for building LTI integrations
Item.php
Go to the documentation of this file.
1
<?php
2
3
namespace
ceLTIc\LTI\Profile
;
4
13
class
Item
14
{
15
21
public
$id
=
null
;
22
28
public
$name
=
null
;
29
35
public
$description
=
null
;
36
42
public
$url
=
null
;
43
49
public
$version
=
null
;
50
56
public
$timestamp
=
null
;
57
68
function
__construct
(
$id
=
null
,
$name
=
null
,
$description
=
null
,
$url
=
null
,
$version
=
null
,
$timestamp
=
null
)
69
{
70
$this->
id
=
$id
;
71
$this->name =
$name
;
72
$this->description =
$description
;
73
$this->url =
$url
;
74
$this->version =
$version
;
75
$this->timestamp =
$timestamp
;
76
}
77
78
}
ceLTIc\LTI\Profile\Item\__construct
__construct($id=null, $name=null, $description=null, $url=null, $version=null, $timestamp=null)
Class constructor.
Definition:
Item.php:68
ceLTIc\LTI\Profile\Item\$version
$version
Version of item.
Definition:
Item.php:49
ceLTIc\LTI\Profile\Item\$description
$description
Description of item.
Definition:
Item.php:35
ceLTIc\LTI\Profile\Item
Class to represent a generic item object.
Definition:
Item.php:13
ceLTIc\LTI\Profile\Item\$name
$name
Name of item.
Definition:
Item.php:28
ceLTIc\LTI\Profile
Definition:
Item.php:3
ceLTIc\LTI\Profile\Item\$timestamp
$timestamp
Timestamp of item.
Definition:
Item.php:56
ceLTIc\LTI\Profile\Item\$id
$id
ID of item.
Definition:
Item.php:21
ceLTIc\LTI\Profile\Item\$url
$url
URL of item.
Definition:
Item.php:42
Generated on Wed Mar 13 2019 by
Doxygen 1.8.15