HEX
Server: Apache
System: Linux WWW 6.1.0-40-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.153-1 (2025-09-20) x86_64
User: web11 (1011)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/lcc.kaunokolegija.lt/wp-content/plugins/codepress-admin-columns/classes/Admin/Table.php
<?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();
    }

}