« Back to History
event_task.php
|
20260721_154032.php
Initial Bulk Import
Copy Code
<?php require_once __DIR__ . '/modules/auth/page_acl.php'; $ctx = page_require_access('event_task'); $pdo = $ctx['pdo']; $company_id = (int)$ctx['company_id']; $u = $ctx['user'] ?? null; require_once __DIR__ . '/partials/header.php'; ?> <div class="container py-4"> <!-- PAGE TITLE --> <div class="card mb-4"> <div class="card-body text-center"> <h3 class="fw-bold mb-1">Event Task</h3> <div class="text-muted">Salary Task / MESR Task</div> </div> </div> <!-- SALARY TASK --> <div class="card mb-4"> <div class="card-header bg-primary text-white"> <h5 class="mb-0">Salary Task</h5> </div> <div class="card-body p-0"> <table class="table table-hover mb-0"> <thead class="table-light"> <tr> <th style="width:60px;">#</th> <th>Task Name</th> </tr> </thead> <tbody> <?php $tasks = [ 'Warper Salary', 'Pissing Salary', 'Pasaria Salary', 'Monthly Salary', 'Salary Summary', 'Salary Summary by Department', 'Production Report', 'Kasab Salary Report', 'Machine Efficiency Report', 'CMS Detail', 'Cover Print' ]; foreach ($tasks as $i => $task): ?> <tr> <td><?= $i + 1 ?></td> <td><?= htmlspecialchars($task) ?></td> </tr> <?php endforeach; ?> </tbody> </table> </div> </div> </div> <?php require_once __DIR__ . '/partials/footer.php'; ?>