ListTableScreen.php
768 Bytes
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
<?php
declare( strict_types=1 );
namespace AC\Table;
class ListTableScreen {
private $list_key;
private $label;
private $url;
private $site_type;
private $group;
public function __construct( string $list_key, string $label, string $url, string $site_type, string $group ) {
$this->list_key = $list_key;
$this->label = $label;
$this->url = $url;
$this->site_type = $site_type;
$this->group = $group;
}
public function get_list_key(): string {
return $this->list_key;
}
public function get_label(): string {
return $this->label;
}
public function get_url(): string {
return $this->url;
}
public function get_site_type(): string {
return $this->site_type;
}
public function get_group(): string {
return $this->group;
}
}