14 lines
		
	
	
		
			355 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			355 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php declare(strict_types=1);
 | |
| 
 | |
| 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));
 | |
|     }
 | |
| }
 |