forked from fluxfw/HelpMe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSupportField.php
54 lines (47 loc) · 949 Bytes
/
SupportField.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
namespace srag\Plugins\HelpMe\Support;
use ilHelpMePlugin;
use srag\DIC\HelpMe\DICTrait;
use srag\Plugins\HelpMe\Utils\HelpMeTrait;
/**
* Class SupportField
*
* @package srag\Plugins\HelpMe\Support
*/
class SupportField
{
use DICTrait;
use HelpMeTrait;
const PLUGIN_CLASS_NAME = ilHelpMePlugin::class;
/**
* @var string
*/
public $key = "";
/**
* @var string
*/
public $label = "";
/**
* @var string
*/
public $name = "";
/**
* @var string
*/
public $value = "";
/**
* SupportField constructor
*
* @param string $key
* @param string $name
* @param string $label
* @param string $value
*/
public function __construct(string $key, string $name, string $label, string $value)
{
$this->key = $key;
$this->name = $name;
$this->label = $label;
$this->value = $value;
}
}