| Current Path : /home/emeraadmin/public_html/4d695/ |
| Current File : /home/emeraadmin/public_html/4d695/subcontractor.zip |
PK �[�\g����* �* viewAcceptedTasks.phpnu �[��� <?php
include('head.php');
require_once '../../Classes/Database.php';
require_once '../../Service/TaskService.php';
require_once '../../Classes/System.php';
require_once '../../Service/ServiceService.php';
$System = new System();
$serviceService = new ServiceService();
$services = $serviceService->getAllServicesForDropdown();
$currentCompanyId = 2; // Replace with dynamic company ID as needed
// Create TaskService instance
$taskService = new TaskService();
$tasks = $taskService->getTasksByAssignedId($companyId);
?>
<div class="main-content">
<div class="container-fluid">
<div class="page-header">
<div class="row align-items-end">
<div class="col-lg-8">
<div class="page-header-title">
<i class="ik ik-layers bg-blue"></i>
<div class="d-inline">
<h5>View Accepted Tasks</h5>
<span>View details of tasks assigned to your company</span>
</div>
</div>
</div>
<div class="col-lg-4">
<nav class="breadcrumb-container" aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item">
<a href="../../index.html"><i class="ik ik-home"></i></a>
</li>
<li class="breadcrumb-item">
<a href="#">Tasks</a>
</li>
<li class="breadcrumb-item active" aria-current="page">View Accepted Tasks</li>
</ol>
</nav>
</div>
</div>
</div>
<!-- Task viewing section -->
<div class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header"><h3>View Tasks</h3></div>
<div class="card-body">
<div class="form-group row">
<div class="col-sm-3">
<label for="filter_service" class="col-form-label">Filter Service Name:</label>
<input type="text" class="form-control" id="filter_service">
</div>
<div class="col-sm-3">
<label for="filter_region" class="col-form-label">Filter Region:</label>
<select class="form-control" id="filter_region">
<option value="">All Regions</option>
<?php
// Collect unique regions
$uniqueRegions = [];
foreach ($services as $service) {
if (!in_array($service->region, $uniqueRegions)) {
$uniqueRegions[] = $service->region;
?>
<option value="<?= htmlspecialchars($service->region) ?>"><?= htmlspecialchars($service->region) ?></option>
<?php
}
}
?>
</select>
</div>
<div class="col-sm-3">
<label for="filter_completed" class="col-form-label">Filter Completed:</label>
<select class="form-control" id="filter_completed">
<option value="">All</option>
<option value="Completed.">Completed.</option>
<option value="Not">Not Completed</option>
</select>
</div>
<div class="col-sm-3">
<label class="col-form-label"> </label>
<div class="col-sm-3">
<button type="button" id="reset_filters" class="btn btn-icon btn-outline-danger"><i class="ik ik-refresh-cw"></i></button>
</div>
</div>
</div>
<table id="super_advanced_table" class="table">
<thead>
<tr>
<th>ID</th>
<th>Service Name</th>
<th>Region</th>
<th>Frequency</th>
<th>Created At</th>
<th>Completed</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<?php foreach ($tasks as $task): ?>
<tr>
<td><?php echo 'TSK-000'.$task->id; ?></td>
<td><?php echo $task->service_name; ?></td>
<td><?php echo $task->region; ?></td>
<td><?php echo $task->frequency; ?></td>
<td><?php echo date('F j, Y, g:i a', strtotime($task->created_at)); ?></td>
<td>
<label class="badge badge-<?php echo $task->finished ? 'success' : 'yellow'; ?>"><?php echo $task->finished ? 'Completed.' : 'Not Completed'; ?></label>
</td>
<td>
<a href="viewtask.php?id=<?php echo $System->encryptData($task->id); ?>" class="btn btn-primary">View Details</a>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
<script>
$(document).ready(function () {
// Initialize DataTable
var table = $('#super_advanced_table').DataTable({
// Configure initial settings if needed
});
// Function to save filters to localStorage
function saveFilters() {
var filters = {
service: $('#filter_service').val(),
region: $('#filter_region').val(),
completed: $('#filter_completed').val()
};
localStorage.setItem('advancedTableFilters', JSON.stringify(filters));
}
// Function to apply saved filters
function applyFilters() {
var filters = JSON.parse(localStorage.getItem('advancedTableFilters'));
if (filters) {
$('#filter_service').val(filters.service).trigger('keyup');
$('#filter_region').val(filters.region).trigger('change');
$('#filter_completed').val(filters.completed).trigger('change');
}
}
// Function to reset filters
function resetFilters() {
$('#filter_service').val('').trigger('keyup');
$('#filter_region').val('').trigger('change');
$('#filter_completed').val('').trigger('change');
localStorage.removeItem('advancedTableFilters');
table.search('').columns().search('').draw();
}
// Check previous page and apply filters if necessary
function checkPreviousPage() {
var previousUrl = sessionStorage.getItem('previousUrl');
if (!previousUrl || !previousUrl.includes('viewtask.php')) {
resetFilters();
} else {
applyFilters();
}
}
checkPreviousPage();
// Add custom filters
$('#filter_service').on('keyup', function () {
table.column(1).search(this.value).draw();
saveFilters();
});
$('#filter_region').on('change', function () {
table.column(2).search($(this).val()).draw();
saveFilters();
});
$('#filter_completed').on('change', function () {
var status = $(this).val();
if (status === "Completed.") {
table.column(5).search('Completed.').draw();
} else if (status === "Not") {
table.column(5).search('Not').draw();
} else {
table.column(5).search('').draw();
}
saveFilters();
});
// Add reset filters button functionality
$('#reset_filters').on('click', function () {
resetFilters();
});
// Apply saved filters on initial load
applyFilters();
});
</script>
</div>
</div>
</div>
</div>
</div>
<?php include('footer.php'); ?>
PK �[�\�v�� � error_lognu �[��� [15-Sep-2024 07:45:28 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/test/emeraltd_prod/pages/subcontractor/dashboard.php on line 22
[16-Sep-2024 09:12:37 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[16-Sep-2024 09:13:57 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[16-Sep-2024 09:14:19 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[16-Sep-2024 09:31:46 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[16-Sep-2024 09:33:50 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[16-Sep-2024 12:35:08 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[16-Sep-2024 12:44:32 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[16-Sep-2024 12:59:07 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[16-Sep-2024 13:13:47 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[16-Sep-2024 13:13:54 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[16-Sep-2024 13:13:55 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[17-Sep-2024 03:21:27 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[17-Sep-2024 04:20:17 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[17-Sep-2024 04:30:55 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[17-Sep-2024 04:37:54 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[17-Sep-2024 04:38:08 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[17-Sep-2024 05:59:00 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[19-Sep-2024 05:43:42 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[19-Sep-2024 05:44:59 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[19-Sep-2024 05:46:00 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[20-Sep-2024 00:24:37 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[20-Sep-2024 01:28:44 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[20-Sep-2024 01:38:32 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[20-Sep-2024 01:59:37 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[20-Sep-2024 03:18:49 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[20-Sep-2024 06:23:50 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[20-Sep-2024 06:24:11 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[20-Sep-2024 06:24:52 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[20-Sep-2024 06:25:09 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[20-Sep-2024 06:25:45 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[20-Sep-2024 06:25:48 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[20-Sep-2024 06:31:16 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[20-Sep-2024 06:58:27 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[21-Sep-2024 04:23:09 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[21-Sep-2024 04:42:29 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[21-Sep-2024 04:42:32 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[22-Sep-2024 04:36:45 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[22-Sep-2024 04:36:50 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[22-Sep-2024 04:48:36 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[22-Sep-2024 04:48:58 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[22-Sep-2024 04:50:00 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[22-Sep-2024 04:50:17 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[22-Sep-2024 04:50:26 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[22-Sep-2024 04:51:32 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[22-Sep-2024 05:20:51 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[22-Sep-2024 05:21:18 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[22-Sep-2024 10:26:34 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[22-Sep-2024 11:18:54 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[22-Sep-2024 23:55:04 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[23-Sep-2024 01:23:35 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[23-Sep-2024 01:36:31 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[23-Sep-2024 01:47:52 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[23-Sep-2024 02:23:26 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[23-Sep-2024 02:28:16 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[23-Sep-2024 02:33:57 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[23-Sep-2024 02:34:00 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[23-Sep-2024 02:44:48 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[23-Sep-2024 02:45:30 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[23-Sep-2024 03:02:41 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[23-Sep-2024 03:10:44 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[23-Sep-2024 04:04:01 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[23-Sep-2024 05:49:59 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[23-Sep-2024 06:05:21 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[23-Sep-2024 06:11:02 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[23-Sep-2024 06:52:34 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[23-Sep-2024 07:11:11 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[23-Sep-2024 07:15:46 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[23-Sep-2024 08:01:35 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[23-Sep-2024 08:22:53 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[23-Sep-2024 08:57:03 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[23-Sep-2024 09:56:51 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[23-Sep-2024 09:57:52 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[23-Sep-2024 10:52:57 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[24-Sep-2024 01:30:11 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[24-Sep-2024 01:48:04 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[24-Sep-2024 02:36:21 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[24-Sep-2024 03:34:25 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[24-Sep-2024 04:32:06 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[24-Sep-2024 05:51:45 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[24-Sep-2024 06:12:06 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[24-Sep-2024 06:18:02 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[24-Sep-2024 07:52:40 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[24-Sep-2024 09:13:44 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[24-Sep-2024 10:54:42 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[24-Sep-2024 22:58:05 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[25-Sep-2024 00:45:32 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[25-Sep-2024 01:06:26 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[25-Sep-2024 01:16:24 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[25-Sep-2024 02:01:37 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[25-Sep-2024 02:52:45 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[25-Sep-2024 02:54:18 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[25-Sep-2024 03:08:16 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[25-Sep-2024 03:08:44 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[25-Sep-2024 03:14:37 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[25-Sep-2024 03:29:03 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[25-Sep-2024 04:20:26 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[25-Sep-2024 04:29:58 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[25-Sep-2024 04:30:25 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[25-Sep-2024 05:07:39 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[25-Sep-2024 05:10:58 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[25-Sep-2024 06:19:25 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[25-Sep-2024 06:33:22 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[25-Sep-2024 07:00:24 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[25-Sep-2024 07:33:09 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[25-Sep-2024 07:59:39 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[25-Sep-2024 23:25:45 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[25-Sep-2024 23:30:07 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[26-Sep-2024 00:59:07 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[26-Sep-2024 01:01:04 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[26-Sep-2024 01:17:21 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[26-Sep-2024 03:01:46 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[26-Sep-2024 03:50:30 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[26-Sep-2024 04:14:07 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[26-Sep-2024 04:25:34 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[26-Sep-2024 05:04:36 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[26-Sep-2024 05:06:13 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[26-Sep-2024 06:19:32 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[26-Sep-2024 07:43:08 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[26-Sep-2024 07:48:46 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[26-Sep-2024 07:55:13 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[26-Sep-2024 07:55:28 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[26-Sep-2024 23:49:48 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[29-Sep-2024 05:16:38 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[29-Sep-2024 22:22:28 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[29-Sep-2024 23:35:46 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[29-Sep-2024 23:42:19 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[30-Sep-2024 01:58:07 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[30-Sep-2024 03:12:53 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[30-Sep-2024 04:27:30 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[30-Sep-2024 05:35:50 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[30-Sep-2024 05:40:44 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[30-Sep-2024 06:02:10 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[30-Sep-2024 07:15:29 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[30-Sep-2024 08:00:03 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[30-Sep-2024 11:19:09 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[30-Sep-2024 23:26:37 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[01-Oct-2024 01:42:51 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[01-Oct-2024 02:39:20 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[01-Oct-2024 02:42:16 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[01-Oct-2024 03:32:26 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[01-Oct-2024 03:47:29 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[01-Oct-2024 04:17:16 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[01-Oct-2024 04:41:52 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[01-Oct-2024 05:32:31 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[01-Oct-2024 06:11:52 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[01-Oct-2024 07:22:14 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[01-Oct-2024 08:38:27 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[01-Oct-2024 11:31:11 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[01-Oct-2024 23:23:23 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[02-Oct-2024 00:02:00 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[02-Oct-2024 02:07:05 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[02-Oct-2024 02:07:20 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[02-Oct-2024 02:08:35 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[02-Oct-2024 02:10:41 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[02-Oct-2024 02:13:59 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[02-Oct-2024 02:57:18 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[02-Oct-2024 03:00:22 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[02-Oct-2024 03:01:16 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[02-Oct-2024 03:01:59 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[02-Oct-2024 03:04:59 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[02-Oct-2024 03:10:48 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[02-Oct-2024 03:49:25 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[02-Oct-2024 04:27:35 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[02-Oct-2024 04:31:15 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[02-Oct-2024 04:59:57 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[02-Oct-2024 05:53:12 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[02-Oct-2024 06:38:55 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[02-Oct-2024 08:39:46 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[02-Oct-2024 08:41:50 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[02-Oct-2024 23:29:52 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[02-Oct-2024 23:30:32 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[02-Oct-2024 23:30:39 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[03-Oct-2024 00:04:38 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[03-Oct-2024 00:12:32 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[03-Oct-2024 00:13:03 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[03-Oct-2024 00:48:14 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[03-Oct-2024 01:24:52 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[03-Oct-2024 01:28:42 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[03-Oct-2024 01:36:10 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[03-Oct-2024 01:48:48 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[03-Oct-2024 01:49:41 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[03-Oct-2024 02:04:20 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[03-Oct-2024 02:07:19 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[03-Oct-2024 02:40:35 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[03-Oct-2024 04:24:01 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[03-Oct-2024 04:32:19 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[03-Oct-2024 05:23:58 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[03-Oct-2024 05:43:21 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[03-Oct-2024 06:33:20 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[03-Oct-2024 06:42:16 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[03-Oct-2024 08:02:04 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[03-Oct-2024 08:07:54 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[03-Oct-2024 10:16:24 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[03-Oct-2024 11:16:29 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[03-Oct-2024 11:19:29 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[03-Oct-2024 12:11:17 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[03-Oct-2024 23:36:41 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[03-Oct-2024 23:39:57 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[04-Oct-2024 01:12:58 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[04-Oct-2024 01:31:07 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[04-Oct-2024 01:50:28 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[04-Oct-2024 02:22:41 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[04-Oct-2024 02:26:47 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[04-Oct-2024 02:41:45 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[04-Oct-2024 02:41:58 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[04-Oct-2024 02:52:02 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[04-Oct-2024 02:58:32 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[04-Oct-2024 03:39:56 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[04-Oct-2024 05:14:08 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[04-Oct-2024 05:27:38 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[04-Oct-2024 05:46:08 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[04-Oct-2024 06:28:08 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[04-Oct-2024 06:36:19 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[04-Oct-2024 06:39:58 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[04-Oct-2024 07:36:59 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[04-Oct-2024 08:07:02 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[04-Oct-2024 08:41:11 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[04-Oct-2024 09:30:24 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[04-Oct-2024 10:37:29 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[04-Oct-2024 10:37:51 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[04-Oct-2024 10:39:14 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[06-Oct-2024 03:58:39 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[07-Oct-2024 01:20:30 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[07-Oct-2024 01:56:18 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[07-Oct-2024 02:15:17 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[07-Oct-2024 02:39:45 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[07-Oct-2024 02:43:28 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[07-Oct-2024 12:25:38 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[07-Oct-2024 12:25:50 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[07-Oct-2024 12:26:26 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[07-Oct-2024 12:26:34 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[07-Oct-2024 12:27:03 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[07-Oct-2024 23:14:46 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[08-Oct-2024 00:52:39 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[16-Oct-2024 05:34:10 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[18-Oct-2024 01:24:41 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[19-Oct-2024 04:16:44 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[19-Oct-2024 04:29:38 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[21-Oct-2024 04:56:54 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[24-Oct-2024 03:25:18 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[24-Oct-2024 03:29:29 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[24-Oct-2024 03:38:09 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[24-Oct-2024 03:38:15 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[24-Oct-2024 06:58:26 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[28-Oct-2024 00:26:47 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22
[06-Nov-2024 14:05:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Nov-2024 14:06:58 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Nov-2024 14:07:13 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Nov-2024 14:10:07 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[06-Nov-2024 14:10:07 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[06-Nov-2024 14:10:17 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Nov-2024 14:11:54 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Nov-2024 14:13:55 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[06-Nov-2024 14:13:55 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[06-Nov-2024 23:23:09 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[26-Nov-2024 00:28:43 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[26-Nov-2024 00:31:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[26-Nov-2024 00:43:59 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[26-Nov-2024 00:44:03 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[26-Nov-2024 00:44:03 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[26-Nov-2024 00:44:07 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[26-Nov-2024 00:44:07 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[26-Nov-2024 00:44:11 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[26-Nov-2024 00:44:11 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[26-Nov-2024 03:36:13 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[26-Nov-2024 03:40:40 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[02-Dec-2024 04:29:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[02-Dec-2024 04:29:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[02-Dec-2024 04:29:52 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[02-Dec-2024 04:29:52 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[02-Dec-2024 04:30:07 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[02-Dec-2024 04:30:07 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[02-Dec-2024 04:30:23 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[02-Dec-2024 04:30:23 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[03-Dec-2024 08:25:43 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[03-Dec-2024 08:25:52 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[03-Dec-2024 08:25:52 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[03-Dec-2024 08:26:27 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64
[03-Dec-2024 08:26:27 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70
[03-Dec-2024 08:28:05 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64
[03-Dec-2024 08:28:05 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70
[03-Dec-2024 08:28:13 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64
[03-Dec-2024 08:28:13 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70
[03-Dec-2024 08:28:29 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64
[03-Dec-2024 08:28:29 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70
[03-Dec-2024 08:39:26 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[03-Dec-2024 08:40:54 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64
[03-Dec-2024 08:40:54 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70
[05-Dec-2024 04:39:01 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Dec-2024 04:39:06 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64
[05-Dec-2024 04:39:06 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70
[05-Dec-2024 04:39:18 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[05-Dec-2024 04:39:18 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[05-Dec-2024 04:39:40 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[05-Dec-2024 04:39:40 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[05-Dec-2024 11:09:11 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Dec-2024 00:31:22 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Dec-2024 00:31:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Dec-2024 00:32:14 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Dec-2024 00:33:42 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64
[06-Dec-2024 00:33:42 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70
[06-Dec-2024 00:34:25 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64
[06-Dec-2024 00:34:25 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70
[06-Dec-2024 00:43:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Dec-2024 09:57:34 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Dec-2024 09:57:41 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Dec-2024 10:00:04 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Dec-2024 10:00:23 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Dec-2024 10:00:35 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Dec-2024 10:02:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Dec-2024 10:15:55 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Dec-2024 10:23:09 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Dec-2024 10:23:14 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Dec-2024 05:44:29 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Dec-2024 07:32:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Dec-2024 14:54:59 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Dec-2024 14:55:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Dec-2024 14:55:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Dec-2024 14:55:38 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Dec-2024 14:57:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Dec-2024 15:15:52 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Dec-2024 15:16:58 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Dec-2024 15:17:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Dec-2024 15:17:42 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Dec-2024 15:17:58 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Dec-2024 15:18:01 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Dec-2024 15:19:29 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Dec-2024 15:19:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Dec-2024 15:29:43 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Dec-2024 15:29:59 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Dec-2024 22:59:31 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Dec-2024 23:01:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Dec-2024 23:04:22 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Dec-2024 23:34:31 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Dec-2024 00:26:40 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Dec-2024 01:22:32 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Dec-2024 02:49:34 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Dec-2024 09:29:33 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Dec-2024 09:38:17 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Dec-2024 22:08:55 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Dec-2024 22:57:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Dec-2024 23:13:21 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64
[09-Dec-2024 23:13:21 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70
[09-Dec-2024 23:13:40 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[09-Dec-2024 23:13:40 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[09-Dec-2024 23:14:31 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Dec-2024 23:32:15 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Dec-2024 23:37:00 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Dec-2024 23:37:59 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Dec-2024 23:40:52 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Dec-2024 00:46:00 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[12-Dec-2024 06:35:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[12-Dec-2024 23:11:34 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[13-Dec-2024 00:33:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[13-Dec-2024 00:33:43 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[13-Dec-2024 00:34:33 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64
[13-Dec-2024 00:34:33 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70
[13-Dec-2024 00:38:18 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[13-Dec-2024 00:42:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[13-Dec-2024 00:44:26 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[13-Dec-2024 00:47:08 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[13-Dec-2024 00:48:22 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[13-Dec-2024 00:54:26 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[13-Dec-2024 00:57:40 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[13-Dec-2024 01:07:54 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[13-Dec-2024 03:29:26 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[15-Dec-2024 22:53:36 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[16-Dec-2024 04:10:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[16-Dec-2024 09:43:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Dec-2024 00:42:07 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Dec-2024 08:14:04 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Dec-2024 08:15:20 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Dec-2024 08:58:15 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Dec-2024 14:27:40 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Dec-2024 14:28:18 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Dec-2024 14:30:54 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Dec-2024 14:34:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Dec-2024 14:38:25 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Dec-2024 14:39:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Dec-2024 14:39:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Dec-2024 14:39:46 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Dec-2024 14:53:26 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Dec-2024 14:56:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Dec-2024 23:06:43 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Dec-2024 23:50:11 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Dec-2024 23:56:56 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Dec-2024 23:58:20 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[18-Dec-2024 02:05:31 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[18-Dec-2024 02:11:33 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[18-Dec-2024 02:11:33 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[18-Dec-2024 11:19:58 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[18-Dec-2024 12:52:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Dec-2024 00:03:41 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Dec-2024 01:39:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Dec-2024 02:29:40 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Dec-2024 03:17:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Dec-2024 04:15:04 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Dec-2024 04:54:35 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Dec-2024 05:16:09 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Dec-2024 05:18:40 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Dec-2024 05:18:42 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Dec-2024 05:18:53 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Dec-2024 05:48:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Dec-2024 05:49:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Dec-2024 05:54:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Dec-2024 05:55:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Dec-2024 05:55:33 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Dec-2024 05:55:43 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Dec-2024 06:29:03 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Dec-2024 07:14:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Dec-2024 07:28:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Dec-2024 07:30:36 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Dec-2024 07:31:05 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Dec-2024 09:32:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Dec-2024 09:57:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Dec-2024 09:59:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Dec-2024 10:09:09 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Dec-2024 10:30:03 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Dec-2024 11:57:52 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Dec-2024 11:58:01 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Dec-2024 12:03:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Dec-2024 12:05:53 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Dec-2024 12:07:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Dec-2024 12:35:58 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Dec-2024 14:40:01 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Dec-2024 14:43:32 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Dec-2024 23:54:18 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[20-Dec-2024 01:25:04 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[20-Dec-2024 01:25:15 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[20-Dec-2024 02:03:46 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[20-Dec-2024 02:14:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[20-Dec-2024 10:18:34 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[21-Dec-2024 00:54:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[21-Dec-2024 00:56:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[22-Dec-2024 04:13:42 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[22-Dec-2024 04:15:46 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[22-Dec-2024 05:49:23 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[22-Dec-2024 05:53:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[22-Dec-2024 05:53:48 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[22-Dec-2024 08:20:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[22-Dec-2024 09:17:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[22-Dec-2024 09:25:49 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[22-Dec-2024 22:44:38 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[22-Dec-2024 22:44:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[22-Dec-2024 22:45:18 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[22-Dec-2024 23:00:07 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[22-Dec-2024 23:06:55 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Dec-2024 00:11:17 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Dec-2024 00:12:55 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Dec-2024 00:22:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Dec-2024 00:32:00 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Dec-2024 02:52:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Dec-2024 03:12:05 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Dec-2024 03:31:09 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Dec-2024 03:33:34 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Dec-2024 03:37:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Dec-2024 03:37:55 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Dec-2024 04:19:05 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Dec-2024 04:46:23 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Dec-2024 05:23:46 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Dec-2024 05:27:56 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Dec-2024 05:28:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Dec-2024 06:12:45 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Dec-2024 07:09:11 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Dec-2024 07:34:25 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Dec-2024 07:39:25 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Dec-2024 08:30:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Dec-2024 10:50:29 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Dec-2024 11:00:18 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[27-Dec-2024 00:01:31 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[27-Dec-2024 05:44:01 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[30-Dec-2024 00:39:33 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[01-Jan-2025 08:12:01 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[01-Jan-2025 16:21:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[01-Jan-2025 16:23:32 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[02-Jan-2025 01:45:29 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[02-Jan-2025 01:45:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[02-Jan-2025 02:07:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[02-Jan-2025 02:07:50 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[02-Jan-2025 02:08:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[02-Jan-2025 06:49:22 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[02-Jan-2025 10:02:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[03-Jan-2025 02:05:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[03-Jan-2025 05:11:20 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[03-Jan-2025 05:14:55 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[03-Jan-2025 05:17:07 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[03-Jan-2025 05:18:48 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[03-Jan-2025 05:20:03 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[03-Jan-2025 05:20:04 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[03-Jan-2025 12:59:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[04-Jan-2025 07:08:06 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[04-Jan-2025 07:24:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[04-Jan-2025 23:14:01 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[04-Jan-2025 23:14:49 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[04-Jan-2025 23:15:14 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Jan-2025 03:06:13 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Jan-2025 03:09:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Jan-2025 03:37:32 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Jan-2025 05:02:15 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Jan-2025 12:47:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Jan-2025 12:48:03 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Jan-2025 12:48:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Jan-2025 12:48:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Jan-2025 12:49:20 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Jan-2025 12:49:40 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Jan-2025 12:52:43 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Jan-2025 12:53:24 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Jan-2025 13:08:40 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Jan-2025 13:09:03 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Jan-2025 13:15:24 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Jan-2025 13:15:41 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Jan-2025 13:16:32 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Jan-2025 13:16:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Jan-2025 13:16:45 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Jan-2025 13:36:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Jan-2025 13:44:26 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Jan-2025 14:14:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Jan-2025 22:44:20 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Jan-2025 23:33:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Jan-2025 23:34:04 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Jan-2025 23:39:35 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Jan-2025 23:47:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Jan-2025 23:50:18 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Jan-2025 00:12:50 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Jan-2025 01:27:22 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Jan-2025 01:44:13 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Jan-2025 01:45:50 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Jan-2025 01:46:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Jan-2025 01:48:24 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Jan-2025 02:00:32 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Jan-2025 02:19:59 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Jan-2025 02:42:04 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Jan-2025 02:53:14 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Jan-2025 03:30:46 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Jan-2025 03:47:45 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Jan-2025 03:53:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Jan-2025 03:55:25 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Jan-2025 04:00:13 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Jan-2025 04:56:29 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Jan-2025 04:56:40 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Jan-2025 05:30:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Jan-2025 05:39:48 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Jan-2025 05:43:42 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Jan-2025 06:05:48 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Jan-2025 06:14:22 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Jan-2025 06:23:40 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Jan-2025 07:21:25 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Jan-2025 11:36:48 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Jan-2025 20:46:05 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Jan-2025 23:03:05 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Jan-2025 23:17:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Jan-2025 23:26:29 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Jan-2025 23:30:25 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Jan-2025 00:20:36 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Jan-2025 02:11:05 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Jan-2025 02:16:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Jan-2025 03:36:03 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Jan-2025 03:39:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Jan-2025 03:49:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Jan-2025 04:04:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Jan-2025 04:10:08 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Jan-2025 04:34:36 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Jan-2025 04:48:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Jan-2025 05:09:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Jan-2025 05:44:22 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Jan-2025 05:44:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Jan-2025 05:45:17 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Jan-2025 06:17:50 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Jan-2025 06:44:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Jan-2025 06:48:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Jan-2025 07:12:14 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Jan-2025 08:40:18 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Jan-2025 09:51:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Jan-2025 09:54:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Jan-2025 11:09:38 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Jan-2025 20:00:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Jan-2025 20:00:49 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Jan-2025 20:00:56 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Jan-2025 20:44:29 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Jan-2025 23:08:42 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Jan-2025 23:19:36 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Jan-2025 00:41:45 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Jan-2025 00:56:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Jan-2025 01:12:43 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Jan-2025 01:28:56 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Jan-2025 01:44:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Jan-2025 02:55:35 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Jan-2025 03:02:26 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Jan-2025 03:31:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Jan-2025 03:31:25 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[08-Jan-2025 03:31:25 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[08-Jan-2025 03:32:01 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[08-Jan-2025 03:32:01 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[08-Jan-2025 03:32:34 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[08-Jan-2025 03:32:34 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[08-Jan-2025 04:07:27 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[08-Jan-2025 04:07:27 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[08-Jan-2025 04:07:32 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[08-Jan-2025 04:07:32 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[08-Jan-2025 04:07:35 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[08-Jan-2025 04:07:35 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[08-Jan-2025 04:07:38 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[08-Jan-2025 04:07:38 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[08-Jan-2025 04:31:52 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Jan-2025 04:35:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Jan-2025 05:32:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Jan-2025 05:34:55 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Jan-2025 05:43:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Jan-2025 05:44:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Jan-2025 07:14:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Jan-2025 07:55:08 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Jan-2025 08:31:53 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Jan-2025 08:35:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Jan-2025 15:20:41 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Jan-2025 21:02:53 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Jan-2025 23:32:49 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Jan-2025 23:49:41 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Jan-2025 00:21:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Jan-2025 00:34:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Jan-2025 00:38:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Jan-2025 01:33:20 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Jan-2025 02:19:07 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Jan-2025 02:20:54 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Jan-2025 02:21:18 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Jan-2025 02:58:50 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Jan-2025 03:10:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Jan-2025 04:16:46 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Jan-2025 04:46:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Jan-2025 05:25:40 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Jan-2025 05:35:17 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Jan-2025 05:57:24 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Jan-2025 06:28:59 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Jan-2025 06:35:18 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Jan-2025 06:36:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Jan-2025 06:48:56 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Jan-2025 07:00:05 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Jan-2025 07:02:11 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Jan-2025 09:06:55 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Jan-2025 09:18:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Jan-2025 15:11:13 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Jan-2025 23:28:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Jan-2025 00:12:34 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Jan-2025 01:08:32 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Jan-2025 01:24:45 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Jan-2025 01:29:56 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Jan-2025 02:23:52 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Jan-2025 03:10:52 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Jan-2025 03:38:38 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Jan-2025 03:40:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Jan-2025 03:42:20 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Jan-2025 03:42:45 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Jan-2025 04:21:59 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Jan-2025 04:22:18 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Jan-2025 04:22:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Jan-2025 04:25:14 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Jan-2025 05:21:58 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Jan-2025 06:24:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Jan-2025 06:37:38 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Jan-2025 07:05:07 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Jan-2025 07:22:42 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[11-Jan-2025 12:29:38 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[11-Jan-2025 12:32:06 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[12-Jan-2025 04:14:58 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[12-Jan-2025 06:55:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[12-Jan-2025 12:21:22 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[12-Jan-2025 21:42:09 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[12-Jan-2025 22:10:58 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[12-Jan-2025 22:27:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[12-Jan-2025 23:25:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[12-Jan-2025 23:32:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[13-Jan-2025 00:17:13 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[13-Jan-2025 00:21:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[13-Jan-2025 00:35:06 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[13-Jan-2025 00:49:48 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[13-Jan-2025 00:55:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[13-Jan-2025 01:45:26 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[13-Jan-2025 02:28:09 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[13-Jan-2025 02:29:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[13-Jan-2025 03:26:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[13-Jan-2025 03:26:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[13-Jan-2025 05:03:53 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[13-Jan-2025 05:04:38 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[13-Jan-2025 05:21:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[13-Jan-2025 05:21:59 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[13-Jan-2025 05:22:00 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[13-Jan-2025 05:23:31 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[13-Jan-2025 05:23:31 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[13-Jan-2025 05:23:49 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[13-Jan-2025 05:23:49 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[13-Jan-2025 05:23:59 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64
[13-Jan-2025 05:23:59 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70
[13-Jan-2025 05:24:47 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64
[13-Jan-2025 05:24:47 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70
[13-Jan-2025 05:24:59 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[13-Jan-2025 05:24:59 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[13-Jan-2025 05:24:59 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[13-Jan-2025 05:38:46 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[13-Jan-2025 06:25:22 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[13-Jan-2025 11:26:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[13-Jan-2025 11:31:56 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[13-Jan-2025 22:30:26 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[14-Jan-2025 00:14:23 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[14-Jan-2025 00:50:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[14-Jan-2025 00:50:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[14-Jan-2025 00:51:04 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[14-Jan-2025 02:24:58 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[14-Jan-2025 03:52:49 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[14-Jan-2025 05:29:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[14-Jan-2025 06:14:23 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[14-Jan-2025 06:32:03 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[14-Jan-2025 06:49:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[14-Jan-2025 11:25:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[14-Jan-2025 20:40:43 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[14-Jan-2025 20:41:41 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[14-Jan-2025 21:33:38 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[14-Jan-2025 21:34:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[14-Jan-2025 21:47:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[14-Jan-2025 21:50:08 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[14-Jan-2025 22:39:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[14-Jan-2025 23:37:14 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[15-Jan-2025 00:00:06 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[15-Jan-2025 00:42:46 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[15-Jan-2025 01:08:54 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[15-Jan-2025 01:09:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[15-Jan-2025 02:15:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[15-Jan-2025 03:09:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[15-Jan-2025 03:25:50 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[15-Jan-2025 04:11:11 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[15-Jan-2025 04:29:49 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[15-Jan-2025 04:32:06 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[15-Jan-2025 04:48:15 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[15-Jan-2025 05:23:04 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[15-Jan-2025 05:30:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[15-Jan-2025 05:32:23 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[15-Jan-2025 05:33:53 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[15-Jan-2025 06:01:48 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[15-Jan-2025 06:43:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[15-Jan-2025 06:50:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[15-Jan-2025 07:07:05 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[15-Jan-2025 09:10:59 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[15-Jan-2025 10:42:00 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[15-Jan-2025 22:59:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[15-Jan-2025 22:59:08 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[15-Jan-2025 23:39:33 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[16-Jan-2025 00:32:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[16-Jan-2025 01:55:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[16-Jan-2025 02:52:42 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[16-Jan-2025 03:09:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[16-Jan-2025 03:37:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[16-Jan-2025 03:40:05 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[16-Jan-2025 03:54:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[16-Jan-2025 03:54:55 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[16-Jan-2025 04:04:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[16-Jan-2025 04:18:09 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[16-Jan-2025 06:42:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[16-Jan-2025 07:22:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[16-Jan-2025 07:22:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[16-Jan-2025 08:58:13 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[16-Jan-2025 09:23:38 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[16-Jan-2025 09:31:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[16-Jan-2025 09:41:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[16-Jan-2025 22:11:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[16-Jan-2025 23:47:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Jan-2025 01:09:18 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Jan-2025 01:09:32 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Jan-2025 01:50:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Jan-2025 02:12:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Jan-2025 02:53:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Jan-2025 03:10:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Jan-2025 03:44:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Jan-2025 04:31:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Jan-2025 05:21:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Jan-2025 05:31:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Jan-2025 07:12:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Jan-2025 07:31:56 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Jan-2025 08:36:01 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Jan-2025 13:39:17 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Jan-2025 09:43:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Jan-2025 12:05:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Jan-2025 19:53:26 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Jan-2025 21:39:31 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Jan-2025 22:09:50 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Jan-2025 22:47:36 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[19-Jan-2025 23:47:01 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[20-Jan-2025 00:21:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[20-Jan-2025 02:18:08 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[20-Jan-2025 03:58:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[20-Jan-2025 03:59:45 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[20-Jan-2025 04:21:54 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[20-Jan-2025 05:41:29 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[20-Jan-2025 07:10:36 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[20-Jan-2025 10:30:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[20-Jan-2025 21:32:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[20-Jan-2025 23:00:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[21-Jan-2025 00:29:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[21-Jan-2025 00:50:34 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[21-Jan-2025 00:51:54 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[21-Jan-2025 02:23:50 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[21-Jan-2025 02:53:46 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[21-Jan-2025 03:39:56 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[21-Jan-2025 04:15:31 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[21-Jan-2025 04:21:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[21-Jan-2025 05:19:56 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[21-Jan-2025 05:36:15 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[21-Jan-2025 06:44:38 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[21-Jan-2025 07:31:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[21-Jan-2025 11:25:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[21-Jan-2025 11:42:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[21-Jan-2025 22:39:00 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[21-Jan-2025 23:26:00 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[22-Jan-2025 00:04:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[22-Jan-2025 00:40:14 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[22-Jan-2025 01:07:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[22-Jan-2025 01:29:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[22-Jan-2025 02:42:29 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[22-Jan-2025 02:58:34 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[22-Jan-2025 04:00:06 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[22-Jan-2025 04:01:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[22-Jan-2025 04:15:45 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[22-Jan-2025 05:13:32 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[22-Jan-2025 07:16:55 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[22-Jan-2025 12:30:33 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[22-Jan-2025 16:24:45 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[22-Jan-2025 16:26:05 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[22-Jan-2025 16:27:49 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[22-Jan-2025 22:06:55 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[22-Jan-2025 22:10:52 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[22-Jan-2025 22:17:17 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[22-Jan-2025 22:40:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[22-Jan-2025 23:43:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[22-Jan-2025 23:48:48 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[22-Jan-2025 23:49:01 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[22-Jan-2025 23:49:01 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[22-Jan-2025 23:51:03 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Jan-2025 01:34:25 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Jan-2025 03:01:24 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Jan-2025 03:09:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Jan-2025 04:34:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Jan-2025 06:25:35 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Jan-2025 07:25:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Jan-2025 09:29:49 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Jan-2025 12:13:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Jan-2025 12:45:00 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Jan-2025 23:06:41 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Jan-2025 23:16:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Jan-2025 23:32:20 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Jan-2025 23:34:29 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[24-Jan-2025 00:49:31 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[24-Jan-2025 01:35:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[24-Jan-2025 02:25:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[24-Jan-2025 02:28:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[24-Jan-2025 02:28:55 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[24-Jan-2025 02:28:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[24-Jan-2025 03:44:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[24-Jan-2025 03:53:33 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[24-Jan-2025 04:16:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[24-Jan-2025 05:00:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[24-Jan-2025 05:22:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[24-Jan-2025 05:35:09 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[24-Jan-2025 05:35:26 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[24-Jan-2025 05:35:32 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[24-Jan-2025 05:36:33 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[24-Jan-2025 05:49:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[24-Jan-2025 06:15:00 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[24-Jan-2025 06:53:45 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[24-Jan-2025 07:10:26 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[24-Jan-2025 07:12:55 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[24-Jan-2025 10:37:45 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[24-Jan-2025 11:07:00 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[25-Jan-2025 01:22:25 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[25-Jan-2025 01:27:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[26-Jan-2025 05:20:15 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[27-Jan-2025 10:31:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[27-Jan-2025 10:58:38 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[27-Jan-2025 20:22:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[27-Jan-2025 23:46:22 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[27-Jan-2025 23:54:11 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[28-Jan-2025 02:03:14 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[28-Jan-2025 02:09:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[28-Jan-2025 02:59:34 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[28-Jan-2025 03:09:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[28-Jan-2025 04:21:11 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[28-Jan-2025 04:52:20 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[28-Jan-2025 05:27:22 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[28-Jan-2025 05:31:14 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[28-Jan-2025 05:46:31 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[28-Jan-2025 05:53:07 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[28-Jan-2025 05:53:31 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[28-Jan-2025 05:54:15 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64
[28-Jan-2025 05:54:15 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70
[28-Jan-2025 05:54:53 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64
[28-Jan-2025 05:54:53 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70
[28-Jan-2025 05:55:25 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[28-Jan-2025 05:55:25 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[28-Jan-2025 06:08:46 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[28-Jan-2025 06:26:52 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[28-Jan-2025 07:24:34 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[28-Jan-2025 09:28:59 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[28-Jan-2025 09:33:01 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[28-Jan-2025 16:27:20 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[28-Jan-2025 16:32:23 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[28-Jan-2025 16:32:59 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64
[28-Jan-2025 16:32:59 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70
[28-Jan-2025 16:33:09 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64
[28-Jan-2025 16:33:09 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70
[28-Jan-2025 16:33:11 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64
[28-Jan-2025 16:33:11 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70
[28-Jan-2025 16:34:04 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64
[28-Jan-2025 16:34:04 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70
[28-Jan-2025 16:34:15 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[28-Jan-2025 16:34:15 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[28-Jan-2025 16:34:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[28-Jan-2025 16:35:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[28-Jan-2025 16:37:01 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[28-Jan-2025 16:40:05 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[28-Jan-2025 16:44:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[28-Jan-2025 20:52:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[29-Jan-2025 01:20:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[29-Jan-2025 02:12:24 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[29-Jan-2025 02:56:06 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[29-Jan-2025 03:12:36 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[29-Jan-2025 04:48:54 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[29-Jan-2025 05:32:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[30-Jan-2025 00:14:41 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[30-Jan-2025 00:15:20 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[30-Jan-2025 04:04:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[31-Jan-2025 04:22:45 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Feb-2025 09:16:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[12-Feb-2025 00:39:03 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[12-Feb-2025 02:42:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[18-Feb-2025 05:33:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[20-Feb-2025 00:14:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[20-Feb-2025 00:43:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[20-Feb-2025 11:43:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[20-Feb-2025 23:12:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[21-Feb-2025 00:59:36 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[21-Feb-2025 11:49:38 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[24-Feb-2025 05:24:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Mar-2025 21:47:49 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Mar-2025 01:10:45 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Mar-2025 01:11:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Mar-2025 01:12:06 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Mar-2025 01:13:16 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Mar-2025 01:13:16 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[18-Mar-2025 00:21:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[18-Mar-2025 04:31:04 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[18-Mar-2025 05:43:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[18-Mar-2025 22:36:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[20-Mar-2025 01:10:11 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[20-Mar-2025 01:48:20 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[20-Mar-2025 01:48:36 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[21-Mar-2025 06:13:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[21-Mar-2025 07:38:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[21-Mar-2025 07:50:49 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[21-Mar-2025 07:59:26 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[21-Mar-2025 08:19:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Mar-2025 10:19:53 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Mar-2025 11:28:22 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Mar-2025 14:12:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[23-Mar-2025 23:59:01 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[24-Mar-2025 07:23:20 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[24-Mar-2025 07:25:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[24-Mar-2025 07:52:08 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[24-Mar-2025 07:54:38 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[24-Mar-2025 08:31:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[24-Mar-2025 09:27:32 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[25-Mar-2025 04:40:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[27-Mar-2025 00:36:17 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[27-Mar-2025 00:37:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[27-Mar-2025 02:08:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[27-Mar-2025 02:13:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[27-Mar-2025 03:02:01 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[27-Mar-2025 03:19:26 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[27-Mar-2025 03:24:29 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[27-Mar-2025 03:25:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[27-Mar-2025 03:26:00 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[27-Mar-2025 03:26:00 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[27-Mar-2025 04:42:03 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[27-Mar-2025 05:11:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[27-Mar-2025 05:44:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[28-Mar-2025 02:06:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[28-Mar-2025 03:58:34 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[29-Mar-2025 01:23:56 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[31-Mar-2025 02:11:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[31-Mar-2025 12:40:45 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[01-Apr-2025 02:27:06 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[02-Apr-2025 20:22:36 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[02-Apr-2025 23:34:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[03-Apr-2025 23:23:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[04-Apr-2025 00:14:06 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[04-Apr-2025 00:54:54 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[04-Apr-2025 08:53:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[04-Apr-2025 09:07:09 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[04-Apr-2025 14:04:33 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[04-Apr-2025 14:05:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[04-Apr-2025 14:05:45 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Apr-2025 05:47:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Apr-2025 12:24:24 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Apr-2025 22:48:52 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Apr-2025 22:50:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[05-Apr-2025 22:50:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Apr-2025 02:19:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Apr-2025 06:25:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Apr-2025 07:03:49 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Apr-2025 11:37:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Apr-2025 12:45:59 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Apr-2025 12:47:20 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Apr-2025 12:47:59 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Apr-2025 12:49:53 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Apr-2025 22:25:11 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[06-Apr-2025 23:25:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 00:11:23 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 00:12:08 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 00:12:08 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 00:12:57 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64
[07-Apr-2025 00:12:57 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70
[07-Apr-2025 00:13:09 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 00:17:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 00:29:25 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 00:37:40 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 00:37:40 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 00:37:49 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 00:37:50 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 00:37:50 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 00:37:57 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 00:37:57 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 00:38:14 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 00:46:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 01:12:38 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 01:31:49 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 01:31:56 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 01:38:49 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 01:44:29 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 01:44:41 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 01:44:41 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 01:44:58 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 01:47:14 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 01:49:53 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 02:03:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 02:03:52 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 02:10:40 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 02:10:50 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 02:10:50 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 02:19:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 02:20:57 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 02:20:57 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 02:21:03 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 02:21:03 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 02:21:05 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 02:21:05 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 02:21:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 02:46:07 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 02:46:22 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 02:46:31 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 02:46:31 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 02:47:07 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 02:55:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 02:58:31 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 02:59:24 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 03:10:17 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 03:30:06 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 03:30:11 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 03:30:11 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 03:33:50 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 03:33:56 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 03:35:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 03:35:24 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 03:35:24 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 03:36:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 03:36:52 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 03:38:11 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 03:38:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 03:41:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 03:44:08 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 03:44:47 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 03:44:47 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 03:47:38 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 03:48:59 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 03:56:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 04:03:45 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 04:04:17 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 04:05:06 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 04:05:06 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 04:05:25 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 04:11:09 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 04:14:32 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 04:16:01 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 04:16:07 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 04:33:35 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 04:34:34 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 04:34:54 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 04:34:54 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 04:35:33 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 04:36:24 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 04:37:15 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 04:37:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 04:38:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 04:40:03 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 04:43:22 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 04:44:54 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 04:49:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 04:50:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 04:50:19 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 04:50:19 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 04:53:50 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 04:54:04 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 04:54:04 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 04:57:20 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 04:57:20 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 04:57:24 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 04:57:38 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 04:57:42 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 04:58:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 05:01:52 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 05:02:57 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 05:02:57 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 05:08:26 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 05:08:26 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 05:09:38 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 05:09:38 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 05:09:41 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 05:09:41 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 05:10:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 05:11:17 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 05:12:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 05:16:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 05:16:25 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 05:16:35 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 05:18:00 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 05:26:29 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 05:26:40 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 05:26:40 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 05:27:08 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 05:28:23 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 05:29:35 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 05:29:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 05:32:25 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 05:33:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 05:33:23 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 05:33:23 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 05:35:00 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 05:35:00 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 05:38:02 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 05:38:02 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 05:41:49 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 05:42:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 05:43:04 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 05:43:18 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 05:45:08 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 05:45:08 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 05:48:32 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 05:48:32 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 05:49:04 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 05:56:26 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 05:56:39 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 05:56:39 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 06:02:16 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 06:02:16 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 06:02:26 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 06:02:26 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 06:02:40 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 06:02:40 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 06:16:48 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 06:16:52 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 06:18:36 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 06:18:36 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 06:19:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 06:19:30 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 06:19:30 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 06:23:06 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 06:23:06 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 06:29:06 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 06:29:06 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 06:30:16 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 06:30:16 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 06:31:12 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 06:31:12 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 06:31:33 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 06:31:33 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 06:31:43 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 06:31:43 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 06:32:06 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 06:34:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 06:34:48 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 06:34:48 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 06:35:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 06:44:38 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 06:44:38 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 06:48:16 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 06:48:16 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 06:51:06 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 06:51:06 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 06:51:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 06:56:56 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 06:59:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 06:59:08 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 06:59:08 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:02:43 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:02:43 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:05:40 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:05:40 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:09:09 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:09:09 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:10:25 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:10:25 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:11:31 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:11:31 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:13:33 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:13:33 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:15:02 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:15:02 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:15:58 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:15:58 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:16:14 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:16:14 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:17:17 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:17:17 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:19:45 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:19:45 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:22:24 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:22:24 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:23:37 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:23:37 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:25:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 07:25:48 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:25:48 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:29:01 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 07:30:27 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:30:27 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:30:57 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:30:57 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:31:56 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:31:56 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:32:04 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:32:04 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:33:07 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:33:07 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:33:48 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:33:48 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:34:45 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:34:45 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:36:18 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:36:18 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:36:49 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:36:49 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:38:36 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:38:36 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:39:21 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:39:21 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:40:13 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:40:13 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:40:26 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 07:43:07 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:43:07 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:43:48 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 07:44:48 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:44:48 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:46:55 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:46:55 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:47:52 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:47:52 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:50:35 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:50:35 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:52:41 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:52:41 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:53:51 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:53:51 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:55:19 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:55:19 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:56:07 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:56:07 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:57:07 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:57:07 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:57:39 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:57:39 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:58:00 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 07:58:13 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 07:58:13 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 07:58:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 07:58:48 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 08:03:03 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 08:19:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 08:19:22 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 08:19:22 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 08:22:00 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 08:22:00 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 08:23:50 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 08:27:09 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 08:27:09 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 08:30:27 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 08:30:27 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 08:32:00 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 08:32:00 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 08:32:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 08:32:54 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 08:32:54 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 08:34:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 08:35:09 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 08:35:09 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 08:35:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 08:36:41 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 08:36:41 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 08:37:20 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 08:37:20 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 08:38:08 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 08:38:08 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 08:39:39 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 08:39:39 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 08:41:08 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 08:41:08 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 08:42:28 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 08:42:28 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 08:45:08 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 08:45:08 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 08:47:43 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 08:47:43 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 08:50:27 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 08:50:27 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 08:51:10 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 08:51:10 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 08:52:58 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 08:52:58 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 08:53:50 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[07-Apr-2025 08:53:50 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[07-Apr-2025 10:14:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 10:44:46 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 13:11:24 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 22:26:09 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 22:40:41 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[07-Apr-2025 23:44:00 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Apr-2025 01:29:53 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Apr-2025 01:36:54 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Apr-2025 02:30:25 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Apr-2025 03:21:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Apr-2025 03:25:18 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Apr-2025 03:25:27 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[08-Apr-2025 03:25:27 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[08-Apr-2025 03:26:25 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Apr-2025 03:27:08 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[08-Apr-2025 03:27:08 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[08-Apr-2025 03:59:30 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[08-Apr-2025 03:59:30 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[08-Apr-2025 04:11:57 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[08-Apr-2025 04:11:57 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[08-Apr-2025 04:25:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Apr-2025 06:15:54 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Apr-2025 06:33:45 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Apr-2025 07:10:58 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Apr-2025 07:42:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Apr-2025 07:44:54 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Apr-2025 08:04:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Apr-2025 08:05:12 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[08-Apr-2025 08:05:12 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[08-Apr-2025 08:07:05 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[08-Apr-2025 08:07:05 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[08-Apr-2025 08:09:13 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Apr-2025 08:09:22 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[08-Apr-2025 08:09:22 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[08-Apr-2025 08:09:32 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[08-Apr-2025 08:09:32 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[08-Apr-2025 08:11:19 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[08-Apr-2025 08:11:19 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[08-Apr-2025 08:13:23 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[08-Apr-2025 08:13:23 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[08-Apr-2025 08:20:49 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[08-Apr-2025 08:20:49 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[08-Apr-2025 08:20:57 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[08-Apr-2025 08:20:57 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[08-Apr-2025 08:24:40 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[08-Apr-2025 08:24:40 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[08-Apr-2025 08:25:01 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[08-Apr-2025 08:25:01 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[08-Apr-2025 08:27:53 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[08-Apr-2025 08:27:53 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[08-Apr-2025 08:28:41 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[08-Apr-2025 08:28:41 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[08-Apr-2025 08:32:44 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[08-Apr-2025 08:32:44 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[08-Apr-2025 08:38:11 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[08-Apr-2025 08:38:11 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[08-Apr-2025 10:51:33 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Apr-2025 11:00:22 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[08-Apr-2025 12:13:42 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Apr-2025 00:47:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Apr-2025 00:59:31 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Apr-2025 01:23:13 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Apr-2025 02:03:54 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Apr-2025 02:04:05 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[09-Apr-2025 02:04:05 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[09-Apr-2025 02:12:23 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[09-Apr-2025 02:12:23 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[09-Apr-2025 02:15:56 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[09-Apr-2025 02:15:56 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[09-Apr-2025 02:16:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Apr-2025 02:20:59 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Apr-2025 02:39:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Apr-2025 03:13:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Apr-2025 03:13:26 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[09-Apr-2025 03:13:26 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[09-Apr-2025 03:37:17 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Apr-2025 03:42:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Apr-2025 03:43:11 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Apr-2025 03:58:06 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Apr-2025 04:27:49 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Apr-2025 04:34:20 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Apr-2025 04:34:30 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[09-Apr-2025 04:34:30 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[09-Apr-2025 04:36:08 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[09-Apr-2025 04:36:08 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[09-Apr-2025 05:01:49 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Apr-2025 05:26:35 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Apr-2025 05:26:45 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[09-Apr-2025 05:26:45 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[09-Apr-2025 05:27:55 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[09-Apr-2025 05:27:55 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[09-Apr-2025 05:30:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Apr-2025 05:36:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Apr-2025 05:37:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Apr-2025 05:38:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Apr-2025 05:42:04 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[09-Apr-2025 05:42:04 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[09-Apr-2025 05:42:41 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Apr-2025 05:43:14 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[09-Apr-2025 05:43:14 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[09-Apr-2025 05:43:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Apr-2025 05:47:12 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[09-Apr-2025 05:47:12 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[09-Apr-2025 06:00:50 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[09-Apr-2025 06:00:50 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[09-Apr-2025 06:03:19 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[09-Apr-2025 06:03:19 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[09-Apr-2025 06:07:24 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[09-Apr-2025 06:07:24 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[09-Apr-2025 06:12:48 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[09-Apr-2025 06:12:48 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[09-Apr-2025 06:14:55 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[09-Apr-2025 06:14:55 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[09-Apr-2025 06:35:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Apr-2025 06:36:05 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[09-Apr-2025 06:36:05 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[09-Apr-2025 06:36:42 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[09-Apr-2025 06:36:42 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[09-Apr-2025 06:45:29 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[09-Apr-2025 06:45:29 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[09-Apr-2025 06:45:50 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Apr-2025 06:45:56 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[09-Apr-2025 06:45:56 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[09-Apr-2025 06:46:30 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[09-Apr-2025 06:46:30 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[09-Apr-2025 06:47:34 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[09-Apr-2025 06:47:34 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[09-Apr-2025 06:48:16 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[09-Apr-2025 06:48:16 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[09-Apr-2025 06:48:47 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[09-Apr-2025 06:48:47 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[09-Apr-2025 06:59:27 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[09-Apr-2025 06:59:27 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[09-Apr-2025 07:00:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Apr-2025 07:00:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Apr-2025 07:00:21 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[09-Apr-2025 07:00:21 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[09-Apr-2025 07:00:34 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Apr-2025 07:01:16 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[09-Apr-2025 07:01:16 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[09-Apr-2025 07:03:17 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[09-Apr-2025 07:03:17 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[09-Apr-2025 07:03:35 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Apr-2025 07:10:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Apr-2025 07:30:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Apr-2025 08:12:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Apr-2025 09:35:32 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Apr-2025 11:46:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[09-Apr-2025 14:22:14 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Apr-2025 00:35:52 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Apr-2025 02:07:07 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Apr-2025 03:02:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Apr-2025 03:14:15 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Apr-2025 03:28:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Apr-2025 04:15:11 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Apr-2025 05:21:14 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Apr-2025 05:28:50 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Apr-2025 05:39:43 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Apr-2025 05:51:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Apr-2025 05:51:36 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[10-Apr-2025 05:51:36 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[10-Apr-2025 05:55:18 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[10-Apr-2025 05:55:18 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[10-Apr-2025 06:00:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Apr-2025 07:16:52 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Apr-2025 07:45:50 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Apr-2025 08:22:22 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Apr-2025 09:40:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Apr-2025 09:44:23 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Apr-2025 12:03:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Apr-2025 12:35:55 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Apr-2025 14:52:43 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[10-Apr-2025 16:27:55 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[11-Apr-2025 01:03:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[11-Apr-2025 01:16:41 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[11-Apr-2025 01:26:31 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[11-Apr-2025 01:44:24 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[11-Apr-2025 02:32:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[11-Apr-2025 03:12:38 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[11-Apr-2025 03:23:01 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[11-Apr-2025 04:16:13 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[11-Apr-2025 04:21:17 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[11-Apr-2025 04:41:26 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[11-Apr-2025 04:51:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[11-Apr-2025 04:51:39 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[11-Apr-2025 04:51:39 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[11-Apr-2025 05:12:42 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[11-Apr-2025 05:12:42 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[11-Apr-2025 05:17:08 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[11-Apr-2025 05:19:23 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[11-Apr-2025 05:19:23 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[11-Apr-2025 05:22:07 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[11-Apr-2025 05:22:07 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[11-Apr-2025 05:31:27 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[11-Apr-2025 05:31:27 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[11-Apr-2025 05:32:11 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[11-Apr-2025 05:32:11 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[11-Apr-2025 05:38:06 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[11-Apr-2025 05:38:06 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[11-Apr-2025 05:38:10 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[11-Apr-2025 05:38:10 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[11-Apr-2025 05:39:16 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[11-Apr-2025 05:39:16 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[11-Apr-2025 05:44:40 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[11-Apr-2025 05:44:40 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[11-Apr-2025 05:44:56 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[11-Apr-2025 05:44:56 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[11-Apr-2025 05:52:33 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[11-Apr-2025 05:52:55 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[11-Apr-2025 05:52:55 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[11-Apr-2025 05:54:16 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[11-Apr-2025 05:54:16 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[11-Apr-2025 06:00:55 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[11-Apr-2025 06:05:52 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[11-Apr-2025 06:05:52 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[11-Apr-2025 06:16:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[11-Apr-2025 07:32:43 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[11-Apr-2025 08:23:52 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[11-Apr-2025 08:24:14 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[11-Apr-2025 08:24:14 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[11-Apr-2025 08:33:18 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[11-Apr-2025 08:33:28 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[11-Apr-2025 08:33:28 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[11-Apr-2025 08:36:12 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[11-Apr-2025 08:36:12 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[11-Apr-2025 08:36:50 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[11-Apr-2025 08:36:50 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[11-Apr-2025 08:37:25 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128
[11-Apr-2025 08:37:25 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134
[11-Apr-2025 08:39:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[11-Apr-2025 08:39:40 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[11-Apr-2025 17:50:34 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[11-Apr-2025 17:51:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[11-Apr-2025 17:51:46 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Sep-2025 10:45:42 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Sep-2025 10:51:06 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Sep-2025 10:51:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Sep-2025 11:13:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Sep-2025 11:13:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Sep-2025 11:44:11 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
[17-Sep-2025 11:44:29 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22
PK �[�\�{9 {9 viewtasksassignedtome.phpnu �[��� <?php
include('head.php');
require_once '../../Classes/Database.php';
require_once '../../Service/TaskService.php';
require_once '../../Classes/System.php';
require_once '../../Service/ServiceService.php';
$System = new System();
$serviceService = new ServiceService();
$services = $serviceService->getAllServicesForDropdown();
// Create TaskService instance
$taskService = new TaskService();
$tasks = $taskService->getTasksByAssignedIdNotAccepted($companyId);
?>
<div class="main-content">
<div class="container-fluid">
<div class="page-header">
<div class="row align-items-end">
<div class="col-lg-8">
<div class="page-header-title">
<i class="ik ik-layers bg-blue"></i>
<div class="d-inline">
<h5>View Assigned Tasks</h5>
<span>Accept or Reject tasks assigned to you</span>
</div>
</div>
</div>
<div class="col-lg-4">
<nav class="breadcrumb-container" aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item">
<a href="../../index.html"><i class="ik ik-home"></i></a>
</li>
<li class="breadcrumb-item">
<a href="#">Tasks</a>
</li>
<li class="breadcrumb-item active" aria-current="page">View Assigned Tasks</li>
</ol>
</nav>
</div>
</div>
</div>
<!-- Task viewing section -->
<div class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header"><h3>View Tasks</h3></div>
<div class="card-body">
<div class="form-group row">
<div class="col-sm-4">
<label for="filter_service" class="col-form-label">Filter Service Name:</label>
<input type="text" class="form-control" id="filter_service">
</div>
<div class="col-sm-4">
<label for="filter_region" class="col-form-label">Filter Region:</label>
<select class="form-control" id="filter_region">
<option value="">All Regions</option>
<?php
// Collect unique regions
$uniqueRegions = [];
foreach ($services as $service) {
if (!in_array($service->region, $uniqueRegions)) {
$uniqueRegions[] = $service->region;
?>
<option value="<?= htmlspecialchars($service->region) ?>"><?= htmlspecialchars($service->region) ?></option>
<?php
}
}
?>
</select>
</div>
<div class="col-sm-3">
<!-- <label for="reset_filters" class="col-form-label">Reset Filters:</label>-->
<button type="button" id="reset_filters" class="btn btn-icon btn-outline-danger"><i class="ik ik-refresh-cw"></i></button>
</div>
</div>
<table id="super_advanced_table" class="table">
<thead>
<tr>
<th><input type="checkbox" id="select_all_tasks"></th>
<th>ID</th>
<th>Service Name</th>
<th>Region</th>
<th>Frequency</th>
<th>Created At</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<?php foreach ($tasks as $task): ?>
<tr>
<td><input type="checkbox" class="task_checkbox" value="<?= $task->id ?>"></td>
<td><?php echo 'TSK-000' . $task->id; ?></td>
<td><?php echo $task->service_name; ?></td>
<td><?php echo $task->region; ?></td>
<td><?php echo $task->frequency; ?></td>
<td><?php echo date('F j, Y, g:i a', strtotime($task->created_at)); ?></td>
<td>
<a href="viewassignedtask.php?id=<?= $System->encryptData($task->id) ?>" class="btn btn-primary">View Details</a>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<button id="accept_tasks_button" class="btn btn-success">Accept Selected Tasks</button>
<button id="reject_tasks_button" class="btn btn-danger">Reject Selected Tasks</button>
</div>
<script>
$(document).ready(function () {
// Initialize DataTable
var table = $('#super_advanced_table').DataTable();
// Function to save filters to localStorage
function saveFilters() {
var filters = {
service: $('#filter_service').val(),
region: $('#filter_region').val()
// Add more filters as needed
};
localStorage.setItem('advancedTableFilters', JSON.stringify(filters));
}
// Function to apply saved filters
function applyFilters() {
var filters = JSON.parse(localStorage.getItem('advancedTableFilters'));
if (filters) {
$('#filter_service').val(filters.service).trigger('keyup');
$('#filter_region').val(filters.region).trigger('change');
// Apply more filters as needed
}
}
// Function to reset filters
function resetFilters() {
$('#filter_service').val('').trigger('keyup');
$('#filter_region').val('').trigger('change');
// Remove more filters as needed
localStorage.removeItem('advancedTableFilters');
table.search('').columns().search('').draw();
}
// Check previous page and apply filters if necessary
function checkPreviousPage() {
var previousUrl = sessionStorage.getItem('previousUrl');
if (!previousUrl || !previousUrl.includes('viewassignedtask.php')) {
resetFilters();
} else {
applyFilters();
}
}
checkPreviousPage();
// Add custom filters
$('#filter_service').on('keyup', function () {
table.column(2).search(this.value).draw();
saveFilters();
});
$('#filter_region').on('change', function () {
table.column(3).search($(this).val()).draw();
saveFilters();
});
// Add reset filters button functionality
$('#reset_filters').on('click', function () {
resetFilters();
});
// Handle select all tasks
$('#select_all_tasks').on('click', function () {
var isChecked = $(this).prop('checked');
$('.task_checkbox').prop('checked', isChecked);
});
// Apply saved filters on initial load
applyFilters();
// Handle accept tasks button click
$('#accept_tasks_button').on('click', function () {
// Confirm before accepting
Swal.fire({
title: 'Are you sure?',
text: 'You are about to accept the selected tasks.',
icon: 'warning',
showCancelButton: true,
confirmButtonText: 'Yes, accept',
cancelButtonText: 'No, cancel'
}).then((result) => {
if (result.isConfirmed) {
handleBulkTaskAction('accepttask_bulk.php');
}
});
});
// Handle reject tasks button click
$('#reject_tasks_button').on('click', function () {
// Confirm before rejecting
Swal.fire({
title: 'Are you sure?',
text: 'You are about to reject the selected tasks.',
icon: 'warning',
showCancelButton: true,
confirmButtonText: 'Yes, reject',
cancelButtonText: 'No, cancel'
}).then((result) => {
if (result.isConfirmed) {
handleBulkTaskAction('rejecttask_bulk.php');
}
});
});
function handleBulkTaskAction(url) {
var selectedTasks = $('.task_checkbox:checked').map(function () {
return $(this).val();
}).get();
if (selectedTasks.length > 0) {
$.ajax({
url: url,
method: 'POST',
data: { taskIds: selectedTasks, companyId: <?= $companyId ?>},
success: function (response) {
if (response === 'success') {
Swal.fire({
title: 'Success',
text: 'Tasks have been processed successfully.',
icon: 'success',
confirmButtonText: 'Ok'
}).then(() => {
location.reload();
});
} else {
Swal.fire({
title: 'Error',
text: 'An error occurred while processing tasks: ' + response,
icon: 'error',
confirmButtonText: 'Ok'
});
}
},
error: function () {
Swal.fire({
title: 'Error',
text: 'An error occurred while processing tasks.',
icon: 'error',
confirmButtonText: 'Ok'
});
}
});
} else {
Swal.fire({
title: 'No Tasks Selected',
text: 'Please select at least one task.',
icon: 'warning',
confirmButtonText: 'Ok'
});
}
}
});
</script>
</div>
</div>
</div>
</div>
</div>
<?php include('footer.php'); ?>
PK �[�\��V V
navbar.phpnu �[��� <div class="modal fade apps-modal" id="appsModal" tabindex="-1" role="dialog" aria-labelledby="appsModalLabel" aria-hidden="true" data-backdrop="false">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><i class="ik ik-x-circle"></i></button>
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="quick-search">
<div class="container">
<div class="row">
<div class="col-md-4 ml-auto mr-auto">
<div class="input-wrap">
<input type="text" id="quick-search" class="form-control" placeholder="Search..." />
<i class="ik ik-search"></i>
</div>
</div>
</div>
</div>
</div>
<div class="modal-body d-flex align-items-center">
<div class="container">
<div class="apps-wrap">
<div class="app-item">
<a href="#"><i class="ik ik-bar-chart-2"></i><span>Dashboard</span></a>
</div>
<div class="app-item">
<a href="#"><i class="ik ik-mail"></i><span>Message</span></a>
</div>
<div class="app-item">
<a href="#"><i class="ik ik-users"></i><span>Accounts</span></a>
</div>
<div class="app-item">
<a href="#"><i class="ik ik-shopping-cart"></i><span>Sales</span></a>
</div>
<div class="app-item">
<a href="#"><i class="ik ik-briefcase"></i><span>Purchase</span></a>
</div>
<div class="app-item">
<a href="#"><i class="ik ik-server"></i><span>Menus</span></a>
</div>
<div class="app-item">
<a href="#"><i class="ik ik-clipboard"></i><span>Pages</span></a>
</div>
<div class="app-item">
<a href="#"><i class="ik ik-message-square"></i><span>Chats</span></a>
</div>
<div class="app-item">
<a href="#"><i class="ik ik-map-pin"></i><span>Contacts</span></a>
</div>
<div class="app-item">
<a href="#"><i class="ik ik-box"></i><span>Blocks</span></a>
</div>
<div class="app-item">
<a href="#"><i class="ik ik-calendar"></i><span>Events</span></a>
</div>
<div class="app-item">
<a href="#"><i class="ik ik-bell"></i><span>Notifications</span></a>
</div>
<div class="app-item">
<a href="#"><i class="ik ik-pie-chart"></i><span>Reports</span></a>
</div>
<div class="app-item">
<a href="#"><i class="ik ik-layers"></i><span>Tasks</span></a>
</div>
<div class="app-item">
<a href="#"><i class="ik ik-edit"></i><span>Blogs</span></a>
</div>
<div class="app-item">
<a href="#"><i class="ik ik-settings"></i><span>Settings</span></a>
</div>
<div class="app-item">
<a href="#"><i class="ik ik-more-horizontal"></i><span>More</span></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>PK �[�\s�Ս*J *J viewassignedtask.phpnu �[��� <?php
include('head.php');
?>
<?php
// Include database connection and TaskService class
require_once '../../Classes/Database.php';
require_once '../../Service/TaskService.php';
require_once '../../Classes/System.php';
$System = new System();
$currentCompanyId = $companyId;
// Create TaskService instance
$taskService = new TaskService();
// Check if task ID is provided in URL
if (isset($_GET['id'])) {
// Fetch task details based on ID
$taskId = $System->decryptData($_GET['id']);
$task = $taskService->getTaskById($taskId);
if(!$task->assigned_to == $currentCompanyId) {
echo '<script>Swal.fire({
title: "Access Denied",
text: "You do not have permission to view this task.",
icon: "error",
confirmButtonText: "OK"
}).then(() => {
window.location.href = "viewtasksassignedtome.php";
});</script>';
exit();
}
} else {
echo '<p>No task ID provided.</p>';
exit();
}
?>
<div class="main-content">
<div class="container-fluid">
<div class="page-header">
<div class="row align-items-end">
<div class="col-lg-8">
<div class="page-header-title">
<i class="ik ik-layers bg-blue"></i>
<div class="d-inline">
<h5>View Task</h5>
<span>View details of a task</span>
</div>
</div>
</div>
<div class="col-lg-4">
<nav class="breadcrumb-container" aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item">
<a href="../../index.html"><i class="ik ik-home"></i></a>
</li>
<li class="breadcrumb-item">
<a href="#">Tasks</a>
</li>
<li class="breadcrumb-item active" aria-current="page">View Task</li>
</ol>
</nav>
</div>
</div>
</div>
<!-- New row for buttons and actions -->
<div class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<div class="card-header-left">
<a href="javascript:history.back()" class="btn btn-outline-primary">Back</a>
</div>
<div class="card-header-right">
<?php
if($task->is_assigned == 1 && $task->assigned_to == $currentCompanyId) {
echo '<button id="acceptTask" class="btn btn-primary">Accept Task</button> <button id="rejectTask" class="btn btn-danger">Reject Task</button>';
}
else{
echo '<button id="acceptTask" class="btn btn-primary">Accept Task</button>';
}
?>
</div>
</div>
</div>
</div>
</div>
<!-- Task viewing section -->
<div class="row">
<div class="col-xl-6 col-md-6">
<div class="card ">
<div class="card-body">
<div class="row align-items-center mb-30">
<div class="col-md-6">
<table>
<tbody>
<tr>
<td><i class="ik ik-layers icon-large"></i></td>
<td><h3 class="mb-0 fw-700 text-black"><?php echo $task->service_name; ?> </h3>
</td>
</tr>
<tr>
<td><i class="ik ik-map-pin icon-large"></i></td>
<td><h5 class="mb-0 fw-500 text-black"><?php echo $task->region; ?> </h5></td>
</tr>
<tr>
<td><i class="ik ik-calendar icon-large"></i></td>
<td><h5 class="mb-0 fw-500 text-black"><?php echo $task->schedule_name; ?> </h5>
</td>
</tr>
<tr>
<td><i class="ik ik-clock icon-large"></i></td>
<td><h5 class="mb-0 fw-500 text-black"><?php echo $task->frequency; ?> </h5>
</td>
</tr>
<!-- is public or not-->
<tr>
<td><i class="ik ik-eye icon-large"></i></td>
<td>
<h2><?php echo($task->isPublic ? '<span class="badge badge-yellow">Open to accept</span>' : '<span class="badge badge-green">Task Assigned</span>'); ?></h2>
</td>
</tr>
<?php if($task->is_assigned == 1 && $task->assigned_to == $currentCompanyId) : ?>
<tr>
<td><i class="ik ik-user icon-large"></i></td>
<td><h6><span class="badge badge-info">
This task is assigned to your company.</span>
</h6></td>
</tr>
<?php endif; ?>
</tbody>
</table>
<style>
table {
width: 100%;
border-collapse: collapse;
}
td {
padding: 10px 15px;
vertical-align: middle;
}
.icon-large {
font-size: 24px;
color: #333;
}
.mb-0 {
margin-bottom: 0;
}
.fw-700 {
font-weight: 700;
}
.fw-500 {
font-weight: 500;
}
.text-black {
color: #000;
}
.badge-success {
background-color: #28a745;
color: #fff;
padding: 5px 10px;
border-radius: 5px;
}
.badge-danger {
background-color: #dc3545;
color: #fff;
padding: 5px 10px;
border-radius: 5px;
}
</style>
</div>
<div class="col-md-6">
<?php
// Assuming $task->dates is a JSON string
$datesJson = $task->dates;
// Decode the JSON string to an array
$datesArray = json_decode($datesJson, true);
// Extract the dates and format them for JavaScript
$formattedDates = array_map(function ($dateEntry) {
return '"' . $dateEntry['date'] . '"';
}, $datesArray);
$jsDates = implode(",", $formattedDates); // Convert the array to a comma-separated string
?>
<div id="datepicker"></div>
<script>
const today = new Date();
flatpickr("#datepicker", {
enable: [<?php echo $jsDates; ?>], // Array of selectable dates
dateFormat: "Y-m-d", // Date format
inline: true, // Show calendar inline
defaultDate: today, // Highlighted date
disableMobile: "false"
});
</script>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card">
<div class="card-header"><h3>Subtasks</h3></div>
<div class="card-body">
<!-- PHP code to fetch and display subtasks -->
<?php
// Fetch and display subtasks associated with the task
$subtasks = $taskService->getSubtasksByTaskId($taskId);
// Display subtasks
if ($subtasks) {
echo '<table class="table" id="advanced_table">
<thead>
<tr>
<th>Date</th>
<th>Time</th>
</tr>
</thead>
<tbody>';
foreach ($subtasks as $subtask) {
echo '<tr>
<td>' . $subtask->subtask_date . '</td>
<td>' . ($subtask->subtask_time ? $subtask->subtask_time : "Not set") . '</td>
</tr>';
}
echo '</tbody></table>';
} else {
echo '<p>No subtasks found for this task.</p>';
}
?>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
console.log('Script block is running.');
var acceptTaskButton = document.getElementById('acceptTask');
if (acceptTaskButton) {
acceptTaskButton.addEventListener('click', function() {
console.log('Accept task button clicked.');
Swal.fire({
title: 'Are you sure?',
text: "Do you want to accept this task?",
icon: 'warning',
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: 'Yes, accept it!'
}).then((result) => {
if (result.isConfirmed) {
var xhr = new XMLHttpRequest();
xhr.open('POST', 'accepttask.php', true);
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
xhr.onreadystatechange = function() {
if (xhr.readyState == 4 && xhr.status == 200) {
console.log(xhr.responseText); // Log the response
if (xhr.responseText === 'success') {
Swal.fire(
'Accepted!',
'Task accepted successfully.',
'success'
).then(() => {
//navigates to view task
window.location.href = 'viewtask.php?id=<?php echo $System->encryptData($taskId); ?>';
//window.location.reload();
});
} else if (xhr.responseText === 'error') {
Swal.fire(
'Error!',
'An error occurred. Please try again.',
'error'
);
} else if (xhr.responseText === 'task_not_found') {
Swal.fire(
'Not Found!',
'Task not found.',
'warning'
);
} else if (xhr.responseText === 'invalid_data') {
Swal.fire(
'Invalid Data!',
'Invalid data.',
'warning'
);
} else if (xhr.responseText === 'invalid_request') {
Swal.fire(
'Invalid Request!',
'Invalid request.',
'warning'
);
}
}
};
var taskId = '<?php echo htmlspecialchars($taskId); ?>';
var companyId = '<?php echo htmlspecialchars($currentCompanyId); ?>';
xhr.send('taskId=' + taskId + '&companyId=' + companyId);
}
});
});
} else {
console.error('Accept task button not found.');
}
// Reject task button
var rejectTaskButton = document.getElementById('rejectTask');
if (rejectTaskButton) {
rejectTaskButton.addEventListener('click', function() {
console.log('Reject task button clicked.');
Swal.fire({
title: 'Are you sure?',
text: "Do you want to reject this task?",
icon: 'warning',
showCancelButton: true,
confirmButtonColor: '#d33',
cancelButtonColor: '#3085d6',
confirmButtonText: 'Yes, reject it!'
}).then((result) => {
if (result.isConfirmed) {
var xhr = new XMLHttpRequest();
xhr.open('POST', 'rejecttask.php', true);
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
xhr.onreadystatechange = function() {
if (xhr.readyState == 4 && xhr.status == 200) {
console.log(xhr.responseText); // Log the response
if (xhr.responseText === 'success') {
Swal.fire(
'Rejected!',
'Task rejected successfully.',
'success'
).then(() => {
//navigates to view task
window.location.href = 'viewtasksassignedtome.php';
//window.location.reload();
});
} else if (xhr.responseText === 'error') {
Swal.fire(
'Error!',
'An error occurred. Please try again.',
'error'
);
} else if (xhr.responseText === 'task_not_found') {
Swal.fire(
'Not Found!',
'Task not found.',
'warning'
);
} else if (xhr.responseText === 'invalid_data') {
Swal.fire(
'Invalid Data!',
'Invalid data.',
'warning'
);
} else if (xhr.responseText === 'invalid_request') {
Swal.fire(
'Invalid Request!',
'Invalid request.',
'warning'
);
}
}
};
var taskId = '<?php echo htmlspecialchars($taskId); ?>';
var companyId = '<?php echo htmlspecialchars($currentCompanyId); ?>';
xhr.send('taskId=' + taskId + '&companyId=' + companyId);
}
});
});
} else {
console.error('Reject task button not found.');
}
</script>
<?php include('footer.php'); ?>
PK �[�\@�, assigntasks.phpnu �[��� <?php
include('head.php');
require_once '../../Classes/Database.php';
require_once '../../Service/TaskService.php';
require_once '../../Classes/System.php';
require_once '../../Service/ServiceService.php';
$serviceService = new ServiceService();
$System = new System();
$services = $serviceService->getAllServicesForDropdown();
// Create TaskService instance
$taskService = new TaskService();
$tasks = $taskService->getTasksWithUnassignedSubtasks($companyId);
?>
<div class="main-content">
<div class="container-fluid">
<div class="page-header">
<div class="row align-items-end">
<div class="col-lg-8">
<div class="page-header-title">
<i class="ik ik-layers bg-blue"></i>
<div class="d-inline">
<h5>View Assignable Tasks</h5>
<span>View details of tasks assigned to your company</span>
</div>
</div>
</div>
<div class="col-lg-4">
<nav class="breadcrumb-container" aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item">
<a href="../../index.html"><i class="ik ik-home"></i></a>
</li>
<li class="breadcrumb-item">
<a href="#">Tasks</a>
</li>
<li class="breadcrumb-item active" aria-current="page">View Accepted Tasks</li>
</ol>
</nav>
</div>
</div>
</div>
<!-- Task viewing section -->
<div class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header"><h3>View Tasks</h3></div>
<div class="card-body">
<div class="form-group row">
<div class="col-sm-3">
<label for="filter_service" class="col-form-label">Filter Service Name:</label>
<input type="text" class="form-control" id="filter_service">
</div>
<div class="col-sm-3">
<label for="filter_region" class="col-form-label">Filter Region:</label>
<select class="form-control" id="filter_region">
<option value="">All Regions</option>
<?php
// Collect unique regions
$uniqueRegions = [];
foreach ($services as $service) {
if (!in_array($service->region, $uniqueRegions)) {
$uniqueRegions[] = $service->region;
?>
<option value="<?= htmlspecialchars($service->region) ?>"><?= htmlspecialchars($service->region) ?></option>
<?php
}
}
?>
</select>
</div>
</div>
<table id="super_advanced_table" class="table">
<thead>
<tr>
<th>ID</th>
<th>Service Name</th>
<th>Region</th>
<th>Frequency</th>
<th>Created At</th>
<th>Completed</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<?php foreach ($tasks as $task): ?>
<tr>
<td><?php echo 'TSK-000'.$task->id; ?></td>
<td><?php echo $task->service_name; ?></td>
<td><?php echo $task->region; ?></td>
<td><?php echo $task->frequency; ?></td>
<td><?php echo date('F j, Y, g:i a', strtotime($task->created_at)); ?></td>
<td>
<label class="badge badge-<?php echo $task->finished ? 'success' : 'yellow'; ?>"><?php echo $task->finished ? 'Completed' : 'Not Completed'; ?></label>
</td>
<td>
<a href="viewtask.php?id=<?php echo $System->encryptData($task->id); ?>" class="btn btn-primary">View Details</a>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
<script>
$(document).ready(function () {
// Initialize DataTable
var table = $('#super_advanced_table').DataTable({
// Configure initial settings if needed
});
// Add custom filters
$('#filter_service').on('keyup', function () {
table.column(1).search(this.value).draw();
});
$('#filter_region').on('change', function () {
table.column(2).search($(this).val()).draw();
});
});
</script>
</div>
</div>
</div>
</div>
</div>
<?php include('footer.php'); ?>
PK �[�\�1,�2 �2 viewtask.phpnu �[��� <?php
include('head.php');
// Include database connection and TaskService class
require_once '../../Classes/Database.php';
require_once '../../Service/TaskService.php';
require_once '../../Classes/System.php';
$System = new System();
// Create TaskService instance
$taskService = new TaskService();
// Check if task ID is provided in URL
if (isset($_GET['id'])) {
// Fetch task details based on ID
$taskId = $System->decryptData($_GET['id']);
// show error if the provided id is not valid with Swal alert
if (!$taskId) {
echo '<script>Swal.fire({
title: "Invalid task ID!",
text: "Please check the URL and try again.",
icon: "error",
confirmButtonText: "OK"
}).then(function() {
window.location = "viewAcceptedTasks.php";
});</script>';
}
$task = $taskService->getTaskById($taskId);
if (!$task) {
exit();
}
} else {
echo '<p>No task ID provided.</p>';
}
$subtasks = $taskService->getSubtasksByTaskId($taskId);
?>
<div class="main-content">
<div class="container-fluid">
<div class="page-header">
<div class="row align-items-end">
<div class="col-lg-8">
<div class="page-header-title">
<i class="ik ik-box bg-blue"></i>
<div class="d-inline">
<h5>View Task</h5>
<span>View details of a task</span>
</div>
</div>
</div>
<div class="col-lg-4">
<nav class="breadcrumb-container" aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item">
<a href="../../index.html"><i class="ik ik-home"></i></a>
</li>
<li class="breadcrumb-item">
<a href="#">Tasks</a>
</li>
<li class="breadcrumb-item active" aria-current="page">View Task</li>
</ol>
</nav>
</div>
</div>
</div>
<!-- New row for buttons and actions -->
<div class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<div class="card-header-left">
<a href="javascript:history.back()" class="btn btn-outline-primary">Back</a>
</div>
<div class="card-header-right">
</div>
</div>
</div>
</div>
</div>
<!-- Modal to assign task to a company -->
<div class="row">
<div class="col-xl-6 col-md-6">
<div class="card ">
<div class="card-body">
<div class="row align-items-center mb-30">
<div class="col-md-6">
<table>
<tbody>
<tr>
<td><i class="ik ik-layers icon-large"></i></td>
<td><h3 class="mb-0 fw-700 text-black"><?php echo $task->service_name; ?> </h3>
</td>
</tr>
<tr>
<td><i class="ik ik-map-pin icon-large"></i></td>
<td><h5 class="mb-0 fw-500 text-black"><?php echo $task->region; ?> </h5></td>
</tr>
<tr>
<td><i class="ik ik-calendar icon-large"></i></td>
<td><h5 class="mb-0 fw-500 text-black"><?php echo $task->schedule_name; ?> </h5>
</td>
</tr>
<tr>
<td><i class="ik ik-clock icon-large"></i></td>
<td><h5 class="mb-0 fw-500 text-black"><?php echo $task->frequency; ?> </h5>
</td>
</tr>
<tr>
<td><i class="ik ik-check-circle icon-large"></i></td>
<td>
<h2><?php echo($task->finished ? '<span class="badge badge-success">Task completed</span>' : '<span class="badge badge-danger">Not Completed</span>'); ?></h2>
</td>
</tr>
<!-- is public or not-->
<?php if($task->is_assigned == 1 && $task->assigned_to == $companyId) : ?>
<tr>
<td><i class="ik ik-user icon-large"></i></td>
<td><h6><span class="badge badge-yellow">
This task is assigned to your company.</span>
</h6></td>
</tr>
<?php endif; ?>
</tbody>
</table>
<style>
table {
width: 100%;
border-collapse: collapse;
}
td {
padding: 10px 15px;
vertical-align: middle;
}
.icon-large {
font-size: 24px;
color: #333;
}
.mb-0 {
margin-bottom: 0;
}
.fw-700 {
font-weight: 700;
}
.fw-500 {
font-weight: 500;
}
.text-black {
color: #000;
}
.badge-success {
background-color: #28a745;
color: #fff;
padding: 5px 10px;
border-radius: 5px;
}
.badge-danger {
background-color: #dc3545;
color: #fff;
padding: 5px 10px;
border-radius: 5px;
}
</style>
</div>
<div class="col-md-6">
<?php
// Assuming $task->dates is a JSON string
$datesJson = $task->dates;
// Decode the JSON string to an array
$datesArray = json_decode($datesJson, true);
// Extract the dates and format them for JavaScript
$formattedDates = array_map(function ($dateEntry) {
return '"' . $dateEntry['date'] . '"';
}, $datesArray);
$jsDates = implode(",", $formattedDates); // Convert the array to a comma-separated string
?>
<div id="datepicker"></div>
<script>
const today = new Date();
flatpickr("#datepicker", {
enable: [<?php echo $jsDates; ?>], // Array of selectable dates
dateFormat: "Y-m-d", // Date format
inline: true, // Show calendar inline
defaultDate: today, // Highlighted date
disableMobile: "false"
});
</script>
</div>
</div>
</div>
</div>
</div>
<!-- Form to assign task to a company -->
<div class="col-md-6">
<div class="card">
<div class="card-header"><h3>Subtasks</h3></div>
<div class="card-body">
<!-- PHP code to fetch and display subtasks -->
<?php
// Fetch and display subtasks associated with the task
// Display subtasks
if ($subtasks) {
?>
<table class="table" id="advanced_table">
<thead>
<tr>
<th>Id</th>
<th>Date</th>
<th>Updated At</th>
<th>Assigned</th>
<th>Completed</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<?php
foreach ($subtasks as $subtask) {
?>
<tr>
<td> ST-000<?php echo $subtask->id; ?></td>
<td><?php echo $subtask->subtask_date; ?></td>
<td><?php echo date('F j, Y, g:i a', strtotime($subtask->updated_at)); ?></td>
<td><?php echo($subtask->assigned ? '<span class="badge badge-success">Assigned</span>' : '<span class="badge badge-danger">Not Assigned</span>'); ?></td>
<td>
<?php
if ($subtask->ignored) {
echo '<span class="badge badge-warning">Ignored</span>';
} else {
echo $subtask->completed
? '<span class="badge badge-success">Completed</span>'
: '<span class="badge badge-danger">Not Completed</span>';
}
?>
</td>
<td>
<a href="viewsubtask.php?id=<?php echo $System->encryptData($subtask->id); ?>" class="btn btn-primary">View</a>
</td>
</tr>
<?php
}
?>
</tbody>
</table>
<?php
}
?>
</div>
</div>
</div>
</div>
</div>
</div>
<?php include('footer.php'); ?>
PK �[�\p|�=� � scripts.phpnu �[��� <script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script>window.jQuery || document.write('<script src="../../src/js/vendor/jquery-3.3.1.min.js"><\/script>')</script>
<script src="../../node_modules/popper.js/dist/umd/popper.min.js"></script>
<script src="../../node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="../../node_modules/perfect-scrollbar/dist/perfect-scrollbar.min.js"></script>
<script src="../../node_modules/screenfull/dist/screenfull.js"></script>
<script src="../../node_modules/flatpickr/dist/flatpickr.js"></script>
<script src="../../node_modules/sweetalert2/dist/sweetalert2.all.min.js"></script>
<script src="../../dist/js/theme.min.js"></script>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script>window.jQuery || document.write('<script src="../../src/js/vendor/jquery-3.3.1.min.js"><\/script>')</script>
<script src="../../node_modules/popper.js/dist/umd/popper.min.js"></script>
<script src="../../node_modules/datatables.net/js/jquery.dataTables.min.js"></script>
<script src="../../node_modules/datatables.net-bs4/js/dataTables.bootstrap4.min.js"></script>
<script src="../../node_modules/datatables.net-responsive/js/dataTables.responsive.min.js"></script>
<script src="../../node_modules/datatables.net-responsive-bs4/js/responsive.bootstrap4.min.js"></script>
<script src="../../node_modules/d3/dist/d3.min.js"></script>
<script src="../../node_modules/c3/c3.min.js"></script>
<script src="../../js/tables.js"></script>
<script src="../../js/widgets.js"></script>
<script src="../../js/charts.js"></script>
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="../../node_modules/select2/dist/js/select2.min.js"></script>
<script src="../../node_modules/bootstrap-tagsinput/dist/bootstrap-tagsinput.min.js"></script>
<script src="../../node_modules/jquery.repeater/jquery.repeater.min.js"></script>
<script src="../../node_modules/mohithg-switchery/dist/switchery.min.js"></script>
<script src="../../js/form-advanced.js"></script>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<script>
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=
function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;
e=o.createElement(i);r=o.getElementsByTagName(i)[0];
e.src='https://www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));
ga('create','UA-XXXXX-X','auto');ga('send','pageview');
</script>
<script>
var scriptUrls = {};
var scripts = document.getElementsByTagName('script');
for (var i = 0; i < scripts.length; i++) {
var src = scripts[i].src;
if (src && !scriptUrls[src]) {
scriptUrls[src] = true;
} else {
scripts[i].parentNode.removeChild(scripts[i]);
}
}
</script>
<script>
$(document).ready(function() {
$('.select2').select2();
});
</script>
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.24/css/jquery.dataTables.css">
<script type="text/javascript" charset="utf8" src="https://code.jquery.com/jquery-3.5.1.js"></script>
<script type="text/javascript" charset="utf8" src="https://cdn.datatables.net/1.10.24/js/jquery.dataTables.js"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/js/bootstrap-datepicker.min.js"></script>
<script src="../../node_modules/select2/dist/js/select2.min.js"></script>
<script src="https://cdn.datatables.net/1.10.24/js/jquery.dataTables.min.js"></script>
</body>
</html>
PK �[�\2K��X X rejecttask.phpnu �[��� <?php
session_start();
require_once '../../Classes/Database.php';
require_once '../../Service/TaskService.php';
require_once '../../Classes/Task.php';
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
if (isset($_POST['taskId']) && isset($_POST['companyId'])) {
$taskId = $_POST['taskId'];
$companyId = $_POST['companyId'];
$taskService = new TaskService();
$task = $taskService->getTaskByIdAsObject($taskId);
if ($task) {
$task->setAssignedTo(null);
$task->setIsAssigned(0);
// Get existing not accepted users
$temp = $task->getNotAcceptedUsers();
$notAcceptedUsers = array_filter(explode(',', $temp));
// Add the new companyId if not already in the list
if (!in_array($companyId, $notAcceptedUsers)) {
$notAcceptedUsers[] = $companyId;
}
// Convert the array back to a string
$task->setNotAcceptedUsers(implode(',', $notAcceptedUsers));
if ($taskService->rejectTask($task)) {
echo 'success';
} else {
echo 'error';
}
} else {
echo 'task_not_found';
}
} else {
echo 'invalid_data';
}
} else {
echo 'invalid_request';
}
?>
PK �[�\��� � sidebar.phpnu �[��� <div class="app-sidebar colored">
<div class="sidebar-header">
<a class="header-brand" href="#">
<div class="logo-img">
</div>
<img src="../../src/img/Emera-Primary-Logo-White.png" class="header-brand-img" alt="Emera Primary Logo" height="50px">
</a>
<button id="sidebarClose" class="nav-close"><i class="ik ik-x"></i></button>
</div>
<div class="sidebar-content">
<div class="nav-container">
<nav id="main-menu-navigation" class="navigation-main">
<div class="nav-item">
<a href="dashboard.php"><i class="ik ik-bar-chart-2"></i><span>Dashboard</span></a>
</div>
<div class="nav-lavel">Tasks</div>
<div class="nav-item">
<a href="viewpublictasks.php"><i class="ik ik-box"></i><span>Public Tasks</span></a>
</div>
<div class="nav-item">
<a href="viewtasksassignedtome.php"><i class="ik ik-corner-left-down"></i><span>View Unaccepted Tasks</span></a>
</div>
<div class="nav-item">
<a href="acceptedongoingtaks.php"><i class="ik ion-ios-keypad"></i><span>Accepted / Ongoing Tasks</span></a>
</div>
<div class="nav-item">
<a href="assigntasktoworkers.php"><i class="ik ik-check-circle"></i><span>Assign Sub Tasks</span></a>
</div>
<div class="nav-item">
<a href="viewassignedsubtasksdaywise.php"><i class="ik ik-check-circle"></i><span>View Subtasks</span></a>
</div>
<div class="nav-item">
<a href="viewAcceptedTasks.php"><i class="ik ik-clipboard"></i><span>All Tasks</span></a>
</div>
<div class="nav-lavel">Reports</div>
<div class="nav-item">
<a href="reports.php"><i class="ik ik-pie-chart"></i><span>Reports</span></a>
</div>
<div class="nav-lavel">Logout</div>
<div class="nav-item">
<a href="../logout.php" id="logout-link"><i class="ik ik-power"></i><span>Logout</span></a>
</div>
<script>
document.getElementById('logout-link').addEventListener('click', function(event) {
event.preventDefault(); // Prevent the default action
Swal.fire({
title: 'Are you sure?',
text: "You want to log out?",
icon: 'warning',
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: 'Yes, log out!'
}).then((result) => {
if (result.isConfirmed) {
window.location.href ='../logout.php';
}
});
});
</script>
</nav>
</div>
</div>
</div>PK �[�\�Z� � report_TaskSummaryForUser.phpnu �[��� <?php
include('head.php');
require_once '../../Classes/Database.php';
require_once '../../Service/TaskService.php';
// Create TaskService instance
$taskService = new TaskService();
$userid = $_SESSION['user_id'];
// Fetch task summaries for each user
$taskSummaries = $taskService->getTaskSummaryForUser($userid);
?>
<div class="main-content">
<div class="container-fluid">
<div class="page-header">
<div class="row align-items-end">
<div class="col-lg-8">
<div class="page-header-title">
<i class="ik ik-layers bg-blue"></i>
<div class="d-inline">
<h5>Task Summary for Each User</h5>
<span>Summary of tasks for each user</span>
</div>
</div>
</div>
<div class="col-lg-4">
<nav class="breadcrumb-container" aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item">
<a href="../../index.html"><i class="ik ik-home"></i></a>
</li>
<li class="breadcrumb-item">
<a href="#">Tasks</a>
</li>
<li class="breadcrumb-item active" aria-current="page">Task Summary for Each User</li>
</ol>
</nav>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="card">
<div class="card-body">
<div class="dt-responsive">
<table class="table" id="task_summary_table">
<thead>
<tr>
<th>User Name</th>
<!-- <th>Assigned Tasks</th>-->
<!-- <th>Pending Tasks</th>-->
<th>Accepted Tasks</th>
<th>Completed Tasks</th>
<th>Incomplete Tasks</th>
</tr>
</thead>
<tbody>
<?php foreach ($taskSummaries as $summary) { ?>
<tr>
<td><?= htmlspecialchars($summary->user_name); ?></td>
<!-- <td>--><?php //= htmlspecialchars($summary->assigned_tasks); ?><!--</td>-->
<!-- <td>--><?php //= htmlspecialchars($summary->pending_tasks); ?><!--</td>-->
<td><?= htmlspecialchars($summary->accepted_tasks); ?></td>
<td><?= htmlspecialchars($summary->completed_tasks); ?></td>
<td><?= htmlspecialchars($summary->not_completed_tasks); ?></td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php include('footer.php'); ?>
<script>
$(document).ready(function() {
$('#task_summary_table').DataTable();
});
</script>
PK �[�\f�e�� �
header.phpnu �[��� <header class="header-top" header-theme="dark">
<div class="container-fluid">
<div class="d-flex justify-content-between">
<div class="top-menu d-flex align-items-center">
<button type="button" class="btn-icon mobile-nav-toggle d-lg-none"><span></span></button>
<div class="header-search">
</div>
<button type="button" id="navbar-fullscreen" class="nav-link"><i class="ik ik-maximize"></i></button>
</div>
<div class="top-menu d-flex align-items-center">
<!-- <div class="dropdown">-->
<!--<!-- <a class="nav-link dropdown-toggle" href="#" id="notiDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="ik ik-bell"></i><span class="badge bg-danger">3</span></a>-->-->
<!-- <div class="dropdown-menu dropdown-menu-right notification-dropdown" aria-labelledby="notiDropdown">-->
<!-- <h4 class="header">Notifications</h4>-->
<!-- <div class="notifications-wrap">-->
<!-- <a href="#" class="media">-->
<!-- <span class="d-flex">-->
<!-- <i class="ik ik-check"></i>-->
<!-- </span>-->
<!-- <span class="media-body">-->
<!-- <span class="heading-font-family media-heading">Invitation accepted</span>-->
<!-- <span class="media-content">Your have been Invited ...</span>-->
<!-- </span>-->
<!-- </a>-->
<!-- <a href="#" class="media">-->
<!-- <span class="d-flex">-->
<!-- <img src="../../img/users/1.jpg" class="rounded-circle" alt="">-->
<!-- </span>-->
<!-- <span class="media-body">-->
<!-- <span class="heading-font-family media-heading">Steve Smith</span>-->
<!-- <span class="media-content">I slowly updated projects</span>-->
<!-- </span>-->
<!-- </a>-->
<!-- <a href="#" class="media">-->
<!-- <span class="d-flex">-->
<!-- <i class="ik ik-calendar"></i>-->
<!-- </span>-->
<!-- <span class="media-body">-->
<!-- <span class="heading-font-family media-heading">To Do</span>-->
<!-- <span class="media-content">Meeting with Nathan on Friday 8 AM ...</span>-->
<!-- </span>-->
<!-- </a>-->
<!-- </div>-->
<!-- <div class="footer"><a href="javascript:void(0);">See all activity</a></div>-->
<!-- </div>-->
<!-- </div>-->
<!-- <button type="button" class="nav-link ml-10 right-sidebar-toggle"><i class="ik ik-message-square"></i><span class="badge bg-success">3</span></button>-->
<!-- <div class="dropdown">-->
<!-- <a class="nav-link dropdown-toggle" href="#" id="menuDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="ik ik-plus"></i></a>-->
<!-- <div class="dropdown-menu dropdown-menu-right menu-grid" aria-labelledby="menuDropdown">-->
<!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Dashboard"><i class="ik ik-bar-chart-2"></i></a>-->
<!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Message"><i class="ik ik-mail"></i></a>-->
<!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Accounts"><i class="ik ik-users"></i></a>-->
<!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Sales"><i class="ik ik-shopping-cart"></i></a>-->
<!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Purchase"><i class="ik ik-briefcase"></i></a>-->
<!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Pages"><i class="ik ik-clipboard"></i></a>-->
<!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Chats"><i class="ik ik-message-square"></i></a>-->
<!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Contacts"><i class="ik ik-map-pin"></i></a>-->
<!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Blocks"><i class="ik ik-inbox"></i></a>-->
<!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Events"><i class="ik ik-calendar"></i></a>-->
<!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Notifications"><i class="ik ik-bell"></i></a>-->
<!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="More"><i class="ik ik-more-horizontal"></i></a>-->
<!-- </div>-->
<!-- </div>-->
<!-- <button type="button" class="nav-link ml-10" id="apps_modal_btn" data-toggle="modal" data-target="#appsModal"><i class="ik ik-grid"></i></button>-->
<!-- <div class="dropdown">-->
<!-- <a class="dropdown-toggle" href="#" id="userDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><img class="avatar" src="../../img/user.jpg" alt=""></a>-->
<!-- <div class="dropdown-menu dropdown-menu-right" aria-labelledby="userDropdown">-->
<!-- <a class="dropdown-item" href="#"><i class="ik ik-user dropdown-icon"></i> Profile</a>-->
<!-- <a class="dropdown-item" href="#"><i class="ik ik-settings dropdown-icon"></i> Settings</a>-->
<!-- <a class="dropdown-item" href="#"><span class="float-right"><span class="badge badge-primary">6</span></span><i class="ik ik-mail dropdown-icon"></i> Inbox</a>-->
<!-- <a class="dropdown-item" href="#"><i class="ik ik-navigation dropdown-icon"></i> Message</a>-->
<!-- <a class="dropdown-item" href="#"><i class="ik ik-power dropdown-icon"></i> Logout</a>-->
<!-- </div>-->
<!-- </div>-->
</div>
</div>
</div>
</header>PK �[�\9�V]�. �. viewsubtasksdaywise.phpnu �[��� <?php
include('head.php');
require_once '../../Classes/Database.php';
require_once '../../Service/TaskService.php';
require_once '../../Classes/System.php';
// Fetch assigned user ID from session or request
$assignedUserId = $_SESSION['user_id'] ?? ($_GET['user_id'] ?? 1); // Default to 1 if not set
// Create TaskService instance
$taskService = new TaskService();
$System = new System(); // Assuming System class is correctly defined and used
$SubContractorId = $_SESSION['user_id'];
// Fetch all subtasks grouped by date
$subtasks = $taskService->getAllSubtasksForSubContractorsGroupByDate($SubContractorId);
?>
<!-- Include Bootstrap Datepicker CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/css/bootstrap-datepicker.min.css" />
<div class="main-content">
<div class="container-fluid">
<div class="page-header">
<div class="row align-items-end">
<div class="col-lg-8">
<div class="page-header-title">
<i class="ik ik-layers bg-blue"></i>
<div class="d-inline">
<h5>Tasks</h5>
<span>Assign Tasks to Cleaner</span>
</div>
</div>
</div>
<div class="col-lg-4">
<nav class="breadcrumb-container" aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item">
<a href="../../index.html"><i class="ik ik-home"></i></a>
</li>
<li class="breadcrumb-item">
<a href="#">Tasks</a>
</li>
<li class="breadcrumb-item active" aria-current="page">All Subtasks</li>
</ol>
</nav>
</div>
</div>
</div>
<!-- Date Filter and Today Checkbox -->
<div class="row mb-4">
<div class="col-md-3">
<div class="form-group">
<label for="startDate">Start Date</label>
<input type="text" id="startDate" class="form-control datepicker" placeholder="Select start date">
</div>
</div>
<div class="col-md-3">
<div class="form-group">
<label for="endDate">End Date</label>
<input type="text" id="endDate" class="form-control datepicker" placeholder="Select end date">
</div>
</div>
<div class="col-md-3 d-flex align-items-center">
<div class="form-check">
<input type="checkbox" class="form-check-input" id="filterToday">
<label class="form-check-label" for="filterToday">Today</label>
</div>
</div>
<div class="col-md-3 d-flex align-items-center">
<button id="applyFilter" class="btn btn-primary">Apply Filter</button>
</div>
</div>
<div class="row mb-4">
<div class="col-md-12">
<a href="assigntasktoworkers.php" class="btn btn-outline-success"><i class="ik ik-layers"></i> Regional View</a>
</div>
</div>
<!-- Assign tasks to cleaner button-->
<div class="row mb-4">
<div class="col-md-12">
<button class="btn btn-primary" id="assignTasks">Assign Tasks to Cleaner</button>
</div>
</div>
<?php foreach ($subtasks as $date => $subtaskList) { ?>
<div class="row subtask-row" data-date="<?php echo $date; ?>">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<h3>Subtasks for <?php
if ($date == date('Y-m-d')) {
echo 'Today';
} else if ($date == date('Y-m-d', strtotime('tomorrow'))) {
echo 'Tomorrow';
} else {
echo date('l, F j, Y', strtotime($date));
}
?></h3>
</div>
<div class="card-body">
<div class="dt-responsive">
<table class="table" id="advanced_table_<?php echo strtotime($date); ?>">
<thead>
<tr>
<th>#</th>
<th>ID</th>
<th>Service Name</th>
<th>Date</th>
<th>Time</th>
<th>Assigned</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<?php foreach ($subtaskList as $subtask) { ?>
<tr>
<td>
<input type="checkbox" class="select_all_child" id="selectall_<?php echo strtotime($date); ?>">
</td>
<td>ST-000<?= $subtask['id']; ?></td>
<td><?= $subtask['service_name']; ?></td>
<td><?= $subtask['subtask_date']; ?></td>
<td><?= $subtask['subtask_time'] ? date('h:i A', strtotime($subtask['subtask_time'])) : ''; ?></td>
<td><?= $subtask['assigned'] ? '<span class="badge badge-success">Assigned</span>' : '<span class="badge badge-danger">Not Assigned</span>'; ?></td>
<td>
<a href="viewsubtask.php?id=<?= $System->encryptData($subtask['id']); ?>" class="btn btn-primary">View</a>
</td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<?php } ?>
</div>
</div>
<?php include('footer.php'); ?>
<!-- Include jQuery and Bootstrap Datepicker JS -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/js/bootstrap-datepicker.min.js"></script>
<script>
$(document).ready(function() {
// Initialize datepickers
$('.datepicker').datepicker({
format: 'yyyy-mm-dd',
autoclose: true,
todayHighlight: true
});
// Filter subtasks by date and today checkbox
function filterSubtasks() {
var startDate = $('#startDate').val();
var endDate = $('#endDate').val();
var filterToday = $('#filterToday').prop('checked');
var today = new Date().toISOString().split('T')[0];
$('.subtask-row').each(function() {
var subtaskDate = $(this).data('date');
var showRow = true;
if (filterToday && subtaskDate !== today) {
showRow = false;
} else if ((startDate && subtaskDate < startDate) || (endDate && subtaskDate > endDate)) {
showRow = false;
}
if (showRow) {
$(this).show();
} else {
$(this).hide();
}
});
}
// Event listeners for date filters and today checkbox
$('#applyFilter').on('click', function() {
filterSubtasks();
});
// Initialize DataTables for each table
$('table').each(function() {
$(this).DataTable();
});
// Handle select all checkboxes for each table
$(".select-all").change(function() {
var tableId = $(this).attr("id").replace("selectall_", "");
$("#" + tableId + " .select_all_child").prop('checked', $(this).prop("checked"));
});
});
// Assign tasks to cleaner
//Swal2 pop up askin workr number
$('#assignTasks').on('click', function() {
// Collect checked subtasks, trimming 'ST-000'
var checkedSubtasks = [];
$('.select_all_child:checked').each(function() {
var subtaskId = $(this).closest('tr').find('td:eq(1)').text().trim().replace('ST-000', '');
checkedSubtasks.push(subtaskId);
});
if (checkedSubtasks.length === 0) {
Swal.fire({
icon: 'error',
title: 'No subtasks selected',
text: 'Please select subtasks to assign to a cleaner'
});
return;
}
console.log(checkedSubtasks);
Swal.fire({
title: 'Enter Cleaner Email',
input: 'email',
inputLabel: 'Cleaner Email',
inputPlaceholder: 'Enter cleaner email',
showCancelButton: true,
confirmButtonText: 'Assign Task',
showLoaderOnConfirm: true,
preConfirm: (email) => {
const subtaskIds = checkedSubtasks;
return fetch('../send_email_to_workers.php', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
action: 'bulk', // or 'single' depending on your logic
worker_email: email,
subtask_ids: subtaskIds
})
})
.then(response => {
if (!response.ok) {
throw new Error('Network response was not ok');
}
return response.json();
})
.then(data => {
console.log('Response from PHP:', data);
// Handle response data accordingly
if (data.status === 'success') {
Swal.fire({
title: 'Success!',
text: 'Task has been assigned successfully',
icon: 'success'
}).then(() => location.reload());
} else {
throw new Error(data.message || 'Unknown error');
}
})
.catch(error => {
console.error('Fetch error:', error);
Swal.showValidationMessage(
`Request failed: ${error.message}`
);
});
},
allowOutsideClick: () => !Swal.isLoading()
});
});
</script>
PK �[�\�P� reports.phpnu �[��� <?php include('head.php'); ?>
<?php
require_once '../../Classes/Database.php';
require_once '../../Service/SubtaskService.php';
require_once '../../Service/UserService.php';
require_once '../../Classes/System.php';
// Initialize necessary services and classes
$System = new System();
$subtaskService = new SubtaskService();
$userService = new UserService();
?>
<style>
.card {
height: 300px; /* Increase the height of the cards */
border-radius: 15px; /* Add rounded corners */
margin-bottom: 20px; /* Add space between the cards */
}
.card-body {
height: 200px;
display: flex;
flex-direction: column;
justify-content: center;
}
</style>
<div class="main-content">
<div class="container-fluid">
<div class="page-header row align-items-end">
<div class="col-lg-8">
<div class="page-header-title">
<i class="ik ik-layers bg-blue"></i>
<div class="d-inline">
<h5>View Reports</h5>
<span>Navigate to different reports</span>
</div>
</div>
</div>
<div class="col-lg-4">
<nav class="breadcrumb-container" aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="#"><i class="ik ik-home"></i></a></li>
<li class="breadcrumb-item"><a href="#">Reports</a></li>
<li class="breadcrumb-item active" aria-current="page">View Reports</li>
</ol>
</nav>
</div>
</div>
<div class="row mt-20">
<!-- Third card -->
<div class="col-md-6">
<a href="report_viewsubtasksdaywise.php" class="card text-center h-100">
<div class="card-body">
<i class="ik ik-x-circle" style="font-size: 2em;"></i>
<h5 class="card-title text-center">Subtasks Day Wise</h5>
<p class="card-text">View subtasks day wise</p>
</div>
</a>
</div>
<!-- task summary report-->
<div class="col-md-6">
<a href="report_TaskSummaryForUser.php" class="card text-center h-100">
<div class="card-body">
<i class="ik ik-list" style="font-size: 2em;"></i>
<h5 class="card-title text-center">Tasks Summary</h5>
<p class="card-text">View summary of tasks</p>
</div>
</a>
</div>
<!-- SubTasks with notes-->
<!-- Fourth card -->
<!-- <div class="col-md-6">-->
<!-- <a href="reports_acceptedtasksbyusers.php" class="card text-center h-100">-->
<!-- <div class="card-body">-->
<!-- <i class="ik ik-trending-up" style="font-size: 2em;"></i>-->
<!-- <h5 class="card-title">Accepted Tasks by Users</h5>-->
<!-- <p class="card-text">View accepted tasks categorized by assigned users</p>-->
<!-- </div>-->
<!-- </a>-->
<!-- </div>-->
</div>
<div class="row mt-20">
<div class="col-md-6">
<a href="report_subtaskswithnotes.php" class="card text-center h-100">
<div class="card-body">
<i class="ik ik-file-text" style="font-size: 2em;"></i>
<h5 class="card-title
text-center">Subtasks with Notes</h5>
<p class="card-text">View subtasks with notes</p>
</div>
</a>
</div>
<!-- Sixth card -->
<!-- <div class="col-md-6">-->
<!-- <a href="#" class="card text-center h-100">-->
<!-- <div class="card-body">-->
<!-- <i class="ik ik-trending-down" style="font-size: 2em;"></i>-->
<!-- <h5 class="card-title">Report 6</h5>-->
<!-- <p class="card-text">Description of report 6</p>-->
<!-- </div>-->
<!-- </a>-->
<!-- </div>-->
</div>
</div>
</div>
<?php include('footer.php'); ?>
PK �[�\� �Ov v accepttask.phpnu �[��� <?php
session_start();
require_once '../../Classes/Database.php';
require_once '../../Service/TaskService.php';
require_once '../../Classes/Task.php';
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
if (isset($_POST['taskId']) && isset($_POST['companyId'])) {
$taskId = $_POST['taskId'];
$companyId = $_POST['companyId'];
$taskService = new TaskService();
$task = $taskService->getTaskByIdAsObject($taskId);
if ($task) {
$task->setAssignedTo($companyId);
$task->setIsAssigned(1);
if ($taskService->assignTask($task)) {
echo 'success';
} else {
echo 'error';
}
} else {
echo 'task_not_found';
}
} else {
echo 'invalid_data';
}
} else {
echo 'invalid_request';
}
?>
PK �[�\�� viewunassignedtasks.phpnu �[��� <?php
// Include head.php
include('head.php');
require_once '../../Classes/Database.php';
require_once '../../Service/TaskService.php';
require_once '../../Classes/System.php';
require_once '../../Service/ServiceService.php';
$System = new System();
// Create TaskService instance
$taskService = new TaskService();
$serviceService = new ServiceService();
$services = $serviceService->getAllServicesForDropdown();
// Fetch tasks from the database
$tasks = $taskService->getUnassignedTasks();
?>
<div class="main-content">
<div class="container-fluid">
<!-- Your existing HTML content -->
<div class="page-header">
<!-- Your existing header -->
</div>
<!-- Task viewing section -->
<div class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<h3>View Tasks</h3>
</div>
<div class="card-body">
<div class="form-group row">
<div class="col-sm-3">
<label for="filter_service" class="col-form-label">Filter Service Name:</label>
<input type="text" class="form-control" id="filter_service">
</div>
<div class="col-sm-3">
<label for="filter_region" class="col-form-label">Filter Region:</label>
<select class="form-control" id="filter_region">
<option value="">All Regions</option>
<?php
// Collect unique regions
$uniqueRegions = [];
foreach ($services as $service) {
if (!in_array($service->region, $uniqueRegions)) {
$uniqueRegions[] = $service->region;
?>
<option value="<?= htmlspecialchars($service->region) ?>"><?= htmlspecialchars($service->region) ?></option>
<?php
}
}
?>
</select>
</div>
<div class="col-sm-3">
<label for="filter_frequency" class="col-form-label">Filter Frequency:</label>
<select class="form-control" id="filter_frequency">
<option value="">All Frequencies</option>
<option value="daily">Daily</option>
<option value="3x/week">3x/week</option>
</select>
</div>
</div>
<table id="super_advanced_table" class="table">
<thead>
<tr>
<th>ID</th>
<th>Service Name</th>
<th>Region</th>
<th>Frequency</th>
<th>Created At</th>
<th>Public Status</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<?php foreach ($tasks as $task): ?>
<tr>
<td><?php echo 'TSK-000'.$task->id; ?></td>
<td><?php echo $task->service_name; ?></td>
<td><?php echo $task->region; ?></td>
<td><?php echo $task->frequency; ?></td>
<td><?php echo date('F j, Y, g:i a', strtotime($task->created_at)); ?></td>
<td>
<label class="badge badge-<?php echo $task->isPublic ? 'yellow' : 'green'; ?>"><?php echo $task->isPublic ? 'Public' : 'Not Public'; ?></label>
</td>
<td>
<a href="viewunassignedtask.php?id=<?php echo $System->encryptData($task->id); ?>" class="btn btn-primary">View Details</a>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
<script>
$(document).ready(function () {
// Initialize DataTable
var table = $('#super_advanced_table').DataTable({
// Configure initial settings if needed
});
// Add custom filters
$('#filter_service').on('keyup', function () {
table.column(1).search(this.value).draw();
});
$('#filter_region').on('change', function () {
table.column(2).search($(this).val()).draw();
});
$('#filter_frequency').on('change', function () {
table.column(3).search($(this).val()).draw();
});
});
</script>
</div>
</div>
</div>
</div>
</div>
<?php include('footer.php'); ?>
PK �[�\���7 �7 assigntasktoworkers.phpnu �[��� <?php
include('head.php');
require_once '../../Classes/Database.php';
require_once '../../Service/TaskService.php';
require_once '../../Classes/System.php';
require_once '../../Service/ServiceService.php';
$System = new System();
$serviceService = new ServiceService();
$taskService = new TaskService();
// Fetch services for dropdown
$services = $serviceService->getAllServicesForDropdown();
// Fetch tasks to display
$tasks = $taskService->getTasksByAssignedandnotCompletedAndNotAssigned($companyId); // Make sure $companyId is defined
?>
<div class="main-content">
<div class="container-fluid">
<!-- Page header -->
<div class="page-header">
<!-- Breadcrumbs -->
<div class="row align-items-end">
<div class="col-lg-8">
<div class="page-header-title">
<i class="ik ik-layers bg-blue"></i>
<div class="d-inline">
<h5>Tasks</h5>
<span>Assign Tasks to a cleaner</span>
</div>
</div>
</div>
<div class="col-lg-4">
<nav class="breadcrumb-container" aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item">
<a href="../../index.html"><i class="ik ik-home"></i></a>
</li>
<li class="breadcrumb-item">
<a href="#">Tasks</a>
</li>
<li class="breadcrumb-item active" aria-current="page">View Assigned Tasks</li>
</ol>
</nav>
</div>
</div>
</div>
<!-- Task viewing section -->
<div class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header"><h3>View Tasks</h3></div>
<div class="card-body">
<!-- Filter options -->
<div class="form-group row">
<div class="col-sm-4">
<label for="filter_service" class="col-form-label">Filter Service Name:</label>
<input type="text" class="form-control" id="filter_service">
</div>
<div class="col-sm-4">
<label for="filter_region" class="col-form-label">Filter Region:</label>
<select class="form-control" id="filter_region">
<option value="">All Regions</option>
<?php
// Collect unique regions
$uniqueRegions = [];
foreach ($services as $service) {
if (!in_array($service->region, $uniqueRegions)) {
$uniqueRegions[] = $service->region;
?>
<option value="<?= htmlspecialchars($service->region) ?>"><?= htmlspecialchars($service->region) ?></option>
<?php
}
}
?>
</select>
</div>
<div class="col-sm-3">
<button type="button" id="reset_filters" class="btn btn-icon btn-outline-danger"><i class="ik ik-refresh-cw"></i></button>
</div>
</div>
<!-- Task table -->
<table id="super_advanced_table" class="table">
<thead>
<tr>
<th><input type="checkbox" id="select_all_tasks"></th>
<th>ID</th>
<th>Service Name</th>
<th>Region</th>
<th>Frequency</th>
<th>Created At</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<?php foreach ($tasks as $task): ?>
<tr>
<td><input type="checkbox" class="task_checkbox" value="<?= htmlspecialchars($task->id) ?>"></td>
<td><?php echo 'TSK-000' . htmlspecialchars($task->id); ?></td>
<td><?php echo htmlspecialchars($task->service_name); ?></td>
<td><?php echo htmlspecialchars($task->region); ?></td>
<td><?php echo htmlspecialchars($task->frequency); ?></td>
<td><?php echo date('F j, Y, g:i a', strtotime($task->created_at)); ?></td>
<td>
<a href="viewtask.php?id=<?= htmlspecialchars($System->encryptData($task->id)) ?>" class="btn btn-primary">View Details</a>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<!-- Assign tasks button -->
<button class="btn btn-primary" id="assignTasks">Assign Tasks to Cleaner</button>
</div>
<!-- JavaScript for DataTable and actions -->
<script>
$(document).ready(function () {
// Initialize DataTable
var table = $('#super_advanced_table').DataTable();
// Function to save filters to localStorage
function saveFilters() {
var filters = {
service: $('#filter_service').val(),
region: $('#filter_region').val()
// Add more filters as needed
};
localStorage.setItem('advancedTableFilters', JSON.stringify(filters));
}
// Function to apply saved filters
function applyFilters() {
var filters = JSON.parse(localStorage.getItem('advancedTableFilters'));
if (filters) {
$('#filter_service').val(filters.service).trigger('keyup');
$('#filter_region').val(filters.region).trigger('change');
// Apply more filters as needed
}
}
// Function to reset filters
function resetFilters() {
$('#filter_service').val('').trigger('keyup');
$('#filter_region').val('').trigger('change');
// Remove more filters as needed
localStorage.removeItem('advancedTableFilters');
table.search('').columns().search('').draw();
}
// Check previous page and apply filters if necessary
function checkPreviousPage() {
var previousUrl = sessionStorage.getItem('previousUrl');
if (!previousUrl || !previousUrl.includes('viewtask.php')) {
resetFilters();
} else {
applyFilters();
}
}
checkPreviousPage();
// Add custom filters
$('#filter_service').on('keyup', function () {
table.column(2).search(this.value).draw();
saveFilters();
});
$('#filter_region').on('change', function () {
table.column(3).search($(this).val()).draw();
saveFilters();
});
// Handle select all tasks
$('#select_all_tasks').on('click', function () {
var isChecked = $(this).prop('checked');
$('.task_checkbox').prop('checked', isChecked);
});
// Add reset filters button functionality
$('#reset_filters').on('click', function () {
resetFilters();
});
// Apply saved filters on initial load
applyFilters();
});
</script>
<script>
$(document).ready(function() {
// Handle assign tasks button click
$('#assignTasks').on('click', function() {
var checkedTasks = [];
$('.task_checkbox:checked').each(function() {
var taskId = $(this).closest('tr').find('td:eq(1)').text().trim().replace('TSK-000', '');
checkedTasks.push(taskId);
});
if (checkedTasks.length === 0) {
Swal.fire({
icon: 'error',
title: 'No Tasks selected',
text: 'Please select tasks to assign to a cleaner'
});
return;
}
Swal.fire({
title: 'Enter Cleaner Email',
input: 'email',
inputLabel: 'Cleaner Email',
inputPlaceholder: 'Enter cleaner email',
showCancelButton: true,
confirmButtonText: 'Assign Task',
showLoaderOnConfirm: true,
preConfirm: (email) => {
return fetch('../send_task_email_to_workers.php', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
action: 'bulk', // or 'single' depending on your logic
worker_email: email,
task_ids: checkedTasks
})
})
.then(response => {
if (!response.ok) {
throw new Error('Network response was not ok');
}
return response.json();
})
.then(data => {
console.log('Response from PHP:', data);
if (data.status === 'success') {
Swal.fire({
title: 'Success!',
text: 'Task has been assigned successfully',
icon: 'success'
}).then(() => location.reload());
} else {
throw new Error(data.message || 'Unknown error');
}
})
.catch(error => {
console.error('Fetch error:', error);
Swal.showValidationMessage(
`Request failed: ${error.message}`
);
});
},
allowOutsideClick: () => !Swal.isLoading()
});
});
});
</script>
</div>
</div>
</div>
</div>
</div>
<?php include('footer.php'); ?>
PK �[�\�&F�t0 t0
dashboard.phpnu �[��� <?php
include('head.php');
require_once '../../Service/ReportsAndDashboardService.php';
$reportsAndDashboardService = new ReportsAndDashboardService();
$pendingTasks = $reportsAndDashboardService->getPendingTasks($companyId);
$completedTasks = $reportsAndDashboardService->getCompletedTasks($companyId);
//$ongoingSubtasks = $reportsAndDashboardService->getOngoingSubtasks($companyId);
$unassignedSubtasks = $reportsAndDashboardService->getUnassignedSubtasks($companyId);
// Fetch completed and incomplete subtask summary data
$subtasksSummary = $reportsAndDashboardService->getSubtasksSummaryForSubContractor($companyId);
$completedSubTasks = $subtasksSummary['completed'];
$incompleteSubTasks = $subtasksSummary['incomplete'];
$ongoingSubTasks = $completedSubTasks + $incompleteSubTasks; // Calculating ongoing subtasks
// Fetch total finished and not finished task summary data
$taskSummary = $reportsAndDashboardService->getTasksSummaryForSubContractor($companyId);
$completedTasks = $taskSummary['completed'];
$pendingTasks = $taskSummary['pending'];
$ongoingTasks = $taskSummary['total'];
$todaySubtasksSummary = $reportsAndDashboardService->getSubtasksSummaryForTodaySubContractor($companyId, date('Y-m-d'));
$todayTotalSubTasks = $todaySubtasksSummary['total'];
$todayCompletedSubTasks = $todaySubtasksSummary['completed'];
$todayIncompleteSubTasks = $todaySubtasksSummary['incomplete'];
?>
<div class="main-content">
<div class="container-fluid">
<div class="row grid-layout">
<!-- Ongoing, Completed, Incomplete Subtasks and Chart -->
<div class="col-md-8">
<div class="card">
<div class="card-header">
<h3>Overall Subtasks Summary</h3>
</div>
<div class="card-body">
<div class="row">
<div class="col-md-6">
<div class="widget bg-primary">
<div class="widget-body">
<div class="d-flex justify-content-between align-items-center">
<div class="state">
<h6>Ongoing Subtasks</h6>
<h2><?php echo $ongoingSubTasks; ?></h2>
</div>
<div class="icon">
<i class="ik ik-box"></i>
</div>
</div>
</div>
</div>
<div class="widget bg-success">
<div class="widget-body">
<div class="d-flex justify-content-between align-items-center">
<div class="state">
<h6>Completed Subtasks</h6>
<h2><?php echo $completedSubTasks; ?></h2>
</div>
<div class="icon">
<i class="ik ik-shopping-cart"></i>
</div>
</div>
</div>
</div>
<div class="widget bg-warning">
<div class="widget-body">
<div class="d-flex justify-content-between align-items-center">
<div class="state">
<h6>Incomplete Subtasks</h6>
<h2><?php echo $incompleteSubTasks; ?></h2>
</div>
<div class="icon">
<i class="ik ik-inbox"></i>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card-body text-center">
<canvas id="subtasksPieChart" style="height: 370px; width: 100%;"></canvas>
</div>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h3>Today's Subtasks Summary: <?php echo date('l, F j, Y'); ?></h3>
</div>
<div class="card-block">
<div class="row">
<div class="col-md-6">
<div class="widget bg-info">
<div class="widget-body">
<div class="d-flex justify-content-between align-items-center">
<div class="state">
<h6>Total Subtasks to be Completed</h6>
<h2><?php echo $todayTotalSubTasks; ?></h2>
</div>
<div class="icon">
<i class="ik ik-calendar"></i>
</div>
</div>
</div>
</div>
<div class="widget bg-success">
<div class="widget-body">
<div class="d-flex justify-content-between align-items-center">
<div class="state">
<h6>Completed Subtasks</h6>
<h2><?php echo $todayCompletedSubTasks; ?></h2>
</div>
<div class="icon">
<i class="ik ik-check-circle"></i>
</div>
</div>
</div>
</div>
<div class="widget bg-warning">
<div class="widget-body">
<div class="d-flex justify-content-between align-items-center">
<div class="state">
<h6>Incomplete Subtasks</h6>
<h2><?php echo $todayIncompleteSubTasks; ?></h2>
</div>
<div class="icon">
<i class="ik ik-alert-circle"></i>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card-block text-center">
<canvas id="todaySubtasksDoughnutChart"
style="height: 370px; width: 100%;"></canvas>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="widget bg-danger">
<div class="widget-body">
<div class="d-flex justify-content-between align-items-center">
<div class="state">
<h6>Pending Tasks</h6>
<h2><?php echo $pendingTasks; ?></h2>
</div>
<div class="icon">
<i class="ik ik-alert-circle"></i>
</div>
</div>
</div>
</div>
<div class="widget bg-success">
<div class="widget-body">
<div class="d-flex justify-content-between align-items-center">
<div class="state">
<h6>Completed Tasks</h6>
<h2><?php echo $completedTasks; ?></h2>
</div>
<div class="icon">
<i class="ik ik-check-circle"></i>
</div>
</div>
</div>
</div>
<div class="widget bg-warning">
<div class="widget-body">
<div class="d-flex justify-content-between align-items-center">
<div class="state">
<h6>Unassigned Subtasks</h6>
<h2><?php echo $unassignedSubtasks; ?></h2>
</div>
<div class="icon">
<i class="ik ik-grid"></i>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Scripts for Charts -->
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script>
// Data for the doughnut chart
var completedSubTasks = <?php echo $completedSubTasks; ?>;
var incompleteSubTasks = <?php echo $incompleteSubTasks; ?>;
// Create Pie Chart for Subtasks
new Chart(document.getElementById('subtasksPieChart'), {
type: 'doughnut',
data: {
labels: ['Completed Subtasks', 'Incomplete Subtasks'],
datasets: [{
data: [completedSubTasks, incompleteSubTasks],
backgroundColor: ['#28a745', '#fd7e14'],
borderColor: ['#ffffff', '#ffffff'],
borderWidth: 1
}]
},
options: {
responsive: true,
maintainAspectRatio: false,
plugins: {
legend: {
display: true,
position: 'bottom'
}
}
}
});
// Data for today's subtasks doughnut chart
var todayCompletedSubTasks = <?php echo $todayCompletedSubTasks; ?>;
var todayIncompleteSubTasks = <?php echo $todayIncompleteSubTasks; ?>;
// Create Doughnut Chart for Today's Subtasks
new Chart(document.getElementById('todaySubtasksDoughnutChart'), {
type: 'doughnut',
data: {
labels: ['Completed Subtasks', 'Incomplete Subtasks'],
datasets: [{
data: [todayCompletedSubTasks, todayIncompleteSubTasks],
backgroundColor: ['#28a745', '#ffc107'],
borderColor: ['#ffffff', '#ffffff'],
borderWidth: 1
}]
},
options: {
responsive: true,
maintainAspectRatio: false,
plugins: {
legend: {
display: true,
position: 'bottom'
}
}
}
});
</script>
<?php include('footer.php'); ?>
PK �[�\o�W�%'