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 
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 }
__construct($id=null, $name=null, $description=null, $url=null, $version=null, $timestamp=null)
Class constructor.
Definition: Item.php:68
$version
Version of item.
Definition: Item.php:49
$description
Description of item.
Definition: Item.php:35
Class to represent a generic item object.
Definition: Item.php:13
$name
Name of item.
Definition: Item.php:28
$timestamp
Timestamp of item.
Definition: Item.php:56
$id
ID of item.
Definition: Item.php:21
$url
URL of item.
Definition: Item.php:42