17 lines
377 B
PHP
17 lines
377 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Shimmie2;
|
|
|
|
class LogDatabaseTheme extends Themelet
|
|
{
|
|
public function display_events($table, $paginator)
|
|
{
|
|
global $page;
|
|
$page->set_title("Event Log");
|
|
$page->set_heading("Event Log");
|
|
$page->add_block(new NavBlock());
|
|
$page->add_block(new Block("Events", $table . $paginator));
|
|
}
|
|
}
|