ILIAS  release_8 Revision v8.24
Item.php
Go to the documentation of this file.
1<?php
2
20
28class Item
29{
35 public ?string $id = null;
36
42 public ?string $name = null;
43
49 public ?string $description = null;
50
56 public ?string $url = null;
57
63 public ?string $version = null;
64
70 public ?int $timestamp = null;
71
81 public function __construct(string $id = null, string $name = null, string $description = null, string $url = null, string $version = null, int $timestamp = null)
82 {
83 $this->id = $id;
84 $this->name = $name;
85 $this->description = $description;
86 $this->url = $url;
87 $this->version = $version;
88 $this->timestamp = $timestamp;
89 }
90}
Class to represent a generic item object.
Definition: Item.php:29
__construct(string $id=null, string $name=null, string $description=null, string $url=null, string $version=null, int $timestamp=null)
Class constructor.
Definition: Item.php:81
string $description
Description of item.
Definition: Item.php:49
string $url
URL of item.
Definition: Item.php:56
int $timestamp
Timestamp of item.
Definition: Item.php:70
string $name
Name of item.
Definition: Item.php:42
string $version
Version of item.
Definition: Item.php:63
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Item.php:19