jilo-web/app/templates/widget.php

78 lines
5.1 KiB
PHP
Raw Normal View History

2024-07-26 08:55:58 +00:00
2024-08-07 08:13:55 +00:00
<div class="row">
2024-07-28 10:35:09 +00:00
<?php if ($widget['collapsible'] === true) { ?>
2024-10-04 11:18:28 +00:00
<a style="text-decoration: none;" data-toggle="collapse" href="#collapse<?= htmlspecialchars($widget['name']) ?>" role="button" aria-expanded="true" aria-controls="collapse<?= htmlspecialchars($widget['name']) ?>">
2024-08-07 08:13:55 +00:00
<div class="card w-auto bg-light card-body" style="flex-direction: row;"><?= $widget['title'] ?></div>
2024-07-29 13:10:35 +00:00
<?php } else { ?>
2024-08-07 08:13:55 +00:00
<div class="card w-auto bg-light border-light card-body" style="flex-direction: row;"><?= $widget['title'] ?></div>
2024-07-28 10:35:09 +00:00
<?php } ?>
<?php if ($widget['collapsible'] === true) { ?>
2024-08-07 08:13:55 +00:00
</a>
2024-07-28 10:35:09 +00:00
<?php } ?>
2024-08-07 08:13:55 +00:00
</div>
2024-07-28 10:35:09 +00:00
2024-10-04 11:18:28 +00:00
<!-- widget "<?= htmlspecialchars($widget['name']) ?>" -->
<div class="collapse show" id="collapse<?= htmlspecialchars($widget['name']) ?>">
2024-07-27 09:36:49 +00:00
<?php if ($time_range_specified) { ?>
2025-01-29 15:46:47 +00:00
<p class="m-3">time period:
<strong>
<?= $from_time == '0000-01-01' ? 'beginning' : date('d M Y', strtotime($from_time)) ?> - <?= $until_time == '9999-12-31' ? 'now' : date('d M Y', strtotime($until_time)) ?>
</strong>
</p>
2024-07-27 09:36:49 +00:00
<?php } ?>
2024-08-07 08:13:55 +00:00
<div class="mb-5">
2024-07-28 10:35:09 +00:00
<?php if ($widget['full'] === true) { ?>
2024-10-07 07:42:54 +00:00
<table class="table table-results table-striped table-hover table-bordered">
2024-08-07 08:13:55 +00:00
<thead class="thead-dark">
<tr>
2024-07-27 09:29:28 +00:00
<?php foreach ($widget['table_headers'] as $header) { ?>
2025-01-29 15:46:47 +00:00
<th scope="col" class="text-nowrap"><?= htmlspecialchars($header) ?></th>
2024-07-27 09:29:28 +00:00
<?php } ?>
2024-08-07 08:13:55 +00:00
</tr>
</thead>
<tbody>
2024-07-27 09:29:28 +00:00
<?php foreach ($widget['table_records'] as $row) { ?>
2024-08-07 08:13:55 +00:00
<tr>
2025-01-29 15:46:47 +00:00
<?php foreach ($row as $key => $column) {
if ($key === 'conference ID') { ?>
<td class="text-nowrap">
<a href="<?= htmlspecialchars($app_root) ?>?platform=<?= htmlspecialchars($platform_id) ?>&page=conferences&id=<?= htmlspecialchars($column ?? '') ?>"
<?= (strlen($column ?? '') > 16) ? 'data-toggle="tooltip" title="' . htmlspecialchars($column) . '"' : '' ?>>
<?= htmlspecialchars(strlen($column ?? '') > 16 ? substr($column, 0, 16) . '...' : $column ?? '') ?>
</a>
</td>
2024-07-27 09:29:28 +00:00
<?php } elseif ($key === 'conference name') { ?>
2025-01-29 15:46:47 +00:00
<td class="text-nowrap">
<a href="<?= htmlspecialchars($app_root) ?>?platform=<?= htmlspecialchars($platform_id) ?>&page=conferences&name=<?= htmlspecialchars($column ?? '') ?>"
<?= (strlen($column ?? '') > 16) ? 'data-toggle="tooltip" title="' . htmlspecialchars($column) . '"' : '' ?>>
<?= htmlspecialchars(strlen($column ?? '') > 16 ? substr($column, 0, 16) . '...' : $column ?? '') ?>
</a>
</td>
<?php } elseif ($key === 'conference host') { ?>
<td class="text-nowrap">
<span <?= (strlen($column ?? '') > 30) ? 'data-toggle="tooltip" title="' . htmlspecialchars($column) . '"' : '' ?>>
<?= htmlspecialchars(strlen($column ?? '') > 30 ? substr($column, 0, 30) . '...' : $column ?? '') ?>
</span>
</td>
2024-07-28 10:35:09 +00:00
<?php } elseif ($key === 'component ID') { ?>
2024-10-04 11:18:28 +00:00
<td><a href="<?= htmlspecialchars($app_root) ?>?platform=<?= htmlspecialchars($platform_id) ?>&page=components&id=<?= htmlspecialchars($column ?? '') ?>"><?= htmlspecialchars($column ?? '') ?></a></td>
2024-07-28 10:35:09 +00:00
<?php } elseif ($key === 'component') { ?>
2024-10-04 11:18:28 +00:00
<td><a href="<?= htmlspecialchars($app_root) ?>?platform=<?= htmlspecialchars($platform_id) ?>&page=components&name=<?= htmlspecialchars($column ?? '') ?>"><?= htmlspecialchars($column ?? '') ?></a></td>
2024-10-07 07:42:54 +00:00
<?php
} elseif ($key === 'start' || $key === 'end') { ?>
2025-01-29 15:46:47 +00:00
<td class="text-nowrap"><?= !empty($column) ? date('d M Y H:i:s',strtotime($column)) : '<small class="text-muted">n/a</small>' ?></td>
2024-07-27 09:29:28 +00:00
<?php } else { ?>
2024-10-04 11:18:28 +00:00
<td><?= htmlspecialchars($column ?? '') ?></td>
2024-07-27 09:29:28 +00:00
<?php }
} ?>
2024-08-07 08:13:55 +00:00
</tr>
2024-07-27 09:29:28 +00:00
<?php } ?>
2024-08-07 08:13:55 +00:00
</tbody>
</table>
2024-07-27 09:29:28 +00:00
<?php } else { ?>
2024-08-07 08:13:55 +00:00
<p class="m-3">No matching records found.</p>
2024-07-27 09:29:28 +00:00
<?php } ?>
2024-08-07 08:13:55 +00:00
</div>
</div>
2024-10-04 11:18:28 +00:00
<!-- /widget "<?= htmlspecialchars($widget['name']) ?>" -->