Files
adsPRO/autoload/view/class.Logs.php
Jacek Pyziak bc75eab439 feat: add logs page with filtering and data table
- Implemented a new logs page with filters for level, source, and date range.
- Added a data table to display logs with pagination and sorting capabilities.
- Created backend functionality to fetch logs data based on filters.
- Introduced a new Logs class for handling log data operations.
- Added a new database migration for the logs table.
- Enhanced UI with custom checkbox styles for better user experience.
- Updated navigation to include a link to the logs page.
2026-02-21 13:05:59 +01:00

13 lines
199 B
PHP

<?php
namespace view;
class Logs
{
static public function main_view( $sources = [] )
{
return \Tpl::view( 'logs/main_view', [
'sources' => $sources,
] );
}
}