LTI Tool Provider Library  3.0.2
PHP class library for building LTI Tool Providers
Item.php
Go to the documentation of this file.
1 <?php
2 
4 
14 class Item
15 {
16 
22  public $id = null;
28  public $name = null;
34  public $description = null;
40  public $url = null;
46  public $version = null;
52  public $timestamp = null;
53 
65  function __construct($id = null, $name = null, $description = null, $url = null, $version = null, $timestamp = null)
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  }
76 
77 }
$timestamp
Timestamp of item.
Definition: Item.php:52
__construct($id=null, $name=null, $description=null, $url=null, $version=null, $timestamp=null)
Class constructor.
Definition: Item.php:65
$version
Version of item.
Definition: Item.php:46
$url
URL of item.
Definition: Item.php:40
Class to represent a generic item object.
Definition: Item.php:14
$description
Description of item.
Definition: Item.php:34
$name
Name of item.
Definition: Item.php:28