Table.php
684 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
<?php
namespace AC\Admin;
use AC\ListScreenCollection;
use AC\View;
abstract class Table
{
protected $message;
abstract public function get_headings(): array;
abstract public function get_rows(): ListScreenCollection;
abstract public function get_column(string $key, $data): string;
public function has_message(): bool
{
return null !== $this->message;
}
public function get_message(): string
{
return $this->message;
}
public function render(): string
{
$view = new View([
'table' => $this,
]);
$view->set_template('admin/table');
return $view->render();
}
}