21 lines
557 B
PHP
21 lines
557 B
PHP
<?php // phpcs:ignoreFile
|
|
|
|
require __DIR__ . '/session.php';
|
|
require __DIR__ . '/userAccess.php';
|
|
|
|
$pageTitle = 'Mill Lab Tests';
|
|
$pageSubtitle = 'Latest lab spreadsheet export';
|
|
$pageDescription = 'Mill laboratory test spreadsheet embedded within the LASUCA controls dashboard.';
|
|
|
|
require __DIR__ . '/includes/layout/header.php';
|
|
require __DIR__ . '/menuinclude.php';
|
|
?>
|
|
|
|
<div class="app-content">
|
|
<section class="data-panel">
|
|
<?php include __DIR__ . '/bigsheet.php'; ?>
|
|
</section>
|
|
</div>
|
|
|
|
<?php require __DIR__ . '/includes/layout/footer.php'; ?>
|