Table.php 684 Bytes
<?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();
    }

}