mirror of
https://github.com/standardebooks/web.git
synced 2025-07-05 06:10:36 -04:00
84 lines
2.6 KiB
PHP
84 lines
2.6 KiB
PHP
<?
|
|
/**
|
|
* @var array<Project> $projects
|
|
*/
|
|
|
|
$includeTitle = $includeTitle ?? true;
|
|
$includeStatus = $includeStatus ?? true;
|
|
$showEditButton = $showEditButton ?? false;
|
|
?>
|
|
<table class="data-table">
|
|
<caption aria-hidden="true">Scroll right →</caption>
|
|
<thead>
|
|
<tr class="mid-header">
|
|
<? if($includeTitle){ ?>
|
|
<th scope="col">Title</th>
|
|
<? } ?>
|
|
<th scope="col">Producer</th>
|
|
<th scope="col">Manager</th>
|
|
<th scope="col">Reviewer</th>
|
|
<th scope="col">Last activity</th>
|
|
<? if($includeStatus){ ?>
|
|
<th scope="col">Status</th>
|
|
<? } ?>
|
|
<th></th>
|
|
<th></th>
|
|
<? if($showEditButton){ ?>
|
|
<th></th>
|
|
<? } ?>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<? foreach($projects as $project){ ?>
|
|
<tr>
|
|
<? if($includeTitle){ ?>
|
|
<td class="row-header">
|
|
<a href="<?= $project->Ebook->Url ?>"><?= Formatter::EscapeHtml($project->Ebook->Title) ?></a>
|
|
</td>
|
|
<? } ?>
|
|
<td class="producer">
|
|
<? if($project->ProducerEmail !== null){ ?>
|
|
<a href="mailto:<?= Formatter::EscapeHtml($project->ProducerEmail) ?>"><?= Formatter::EscapeHtml($project->ProducerName) ?></a>
|
|
<? }elseif($project->DiscussionUrl !== null){ ?>
|
|
<a href="<?= Formatter::EscapeHtml($project->DiscussionUrl) ?>"><?= Formatter::EscapeHtml($project->ProducerName) ?></a>
|
|
<? }else{ ?>
|
|
<?= Formatter::EscapeHtml($project->ProducerName) ?>
|
|
<? } ?>
|
|
</td>
|
|
<td>
|
|
<a href="<?= $project->Manager->Url ?>/projects"><?= Formatter::EscapeHtml($project->Manager->DisplayName) ?></a>
|
|
</td>
|
|
<td>
|
|
<a href="<?= $project->Reviewer->Url ?>/projects"><?= Formatter::EscapeHtml($project->Reviewer->DisplayName) ?></a>
|
|
</td>
|
|
<td>
|
|
<? if(intval($project->LastActivityTimestamp->format('Y')) == intval(NOW->format('Y'))){ ?>
|
|
<?= $project->LastActivityTimestamp->format(Enums\DateTimeFormat::ShortDateWithoutYear->value) ?>
|
|
<? }else{ ?>
|
|
<?= $project->LastActivityTimestamp->format(Enums\DateTimeFormat::ShortDate->value) ?>
|
|
<? } ?>
|
|
</td>
|
|
<? if($includeStatus){ ?>
|
|
<td class="status<? if($project->Status == Enums\ProjectStatusType::Stalled){ ?> stalled<? } ?>">
|
|
<?= ucfirst($project->Status->GetDisplayName()) ?>
|
|
</td>
|
|
<? } ?>
|
|
<td>
|
|
<? if($project->VcsUrl !== null){ ?>
|
|
<a href="<?= Formatter::EscapeHtml($project->VcsUrl) ?>">Repository</a>
|
|
<? } ?>
|
|
</td>
|
|
<td>
|
|
<? if($project->DiscussionUrl !== null){ ?>
|
|
<a href="<?= Formatter::EscapeHtml($project->DiscussionUrl) ?>">Discussion</a>
|
|
<? } ?>
|
|
</td>
|
|
<? if($showEditButton){ ?>
|
|
<td>
|
|
<a href="<?= $project->EditUrl ?>">Edit</a>
|
|
</td>
|
|
<? } ?>
|
|
</tr>
|
|
<? } ?>
|
|
</tbody>
|
|
</table>
|