LTI Integration Library 4.10.3
PHP class library for building LTI integrations
 
Loading...
Searching...
No Matches
Profile/Item.php
1<?php
2
3namespace ceLTIc\LTI\Profile;
4
12class Item
13{
14
20 public $id = null;
21
27 public $name = null;
28
34 public $description = null;
35
41 public $url = null;
42
48 public $version = null;
49
55 public $timestamp = null;
56
67 function __construct($id = null, $name = null, $description = null, $url = null, $version = null, $timestamp = null)
68 {
69 $this->id = $id;
70 $this->name = $name;
71 $this->description = $description;
72 $this->url = $url;
73 $this->version = $version;
74 $this->timestamp = $timestamp;
75 }
76
77}
Class to represent a generic item object.
$timestamp
Timestamp of item.
$description
Description of item.
$version
Version of item.
__construct($id=null, $name=null, $description=null, $url=null, $version=null, $timestamp=null)
Class constructor.