mirror of
https://github.com/standardebooks/web.git
synced 2025-07-18 12:26:39 -04:00
Rename some Formatter functions for clarity
This commit is contained in:
parent
5ef6d3aef8
commit
f7ff76bf7d
39 changed files with 194 additions and 194 deletions
|
@ -11,13 +11,13 @@
|
|||
<tbody>
|
||||
<? foreach($collections as $collection){ ?>
|
||||
<tr>
|
||||
<td class="row-header"><a href="<?= $collection->Url ?>"><?= Formatter::ToPlainText($collection->Label) ?></a></td>
|
||||
<td class="number"><?= Formatter::ToPlainText(number_format($collection->EbookCount)) ?></td>
|
||||
<td class="number"><?= Formatter::ToPlainText($collection->UpdatedString) ?></td>
|
||||
<td class="row-header"><a href="<?= $collection->Url ?>"><?= Formatter::EscapeHtml($collection->Label) ?></a></td>
|
||||
<td class="number"><?= Formatter::EscapeHtml(number_format($collection->EbookCount)) ?></td>
|
||||
<td class="number"><?= Formatter::EscapeHtml($collection->UpdatedString) ?></td>
|
||||
|
||||
<? foreach($collection->ZipFiles as $item){ ?>
|
||||
<td class="download"><a href="<?= $item->Url ?>"><?= $item->Type ?></a></td>
|
||||
<td>(<?= Formatter::ToPlainText($item->Size) ?>)</td>
|
||||
<td>(<?= Formatter::EscapeHtml($item->Size) ?>)</td>
|
||||
<? } ?>
|
||||
</tr>
|
||||
<? } ?>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue