wikipoints/views/tracks/files.php

28 lines
798 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<h3>Ваши исходные файлы с треками</h3>
<a href="/tracks/"> вернуться к трекам</a>
<hr/>
<?php
if ($files) {
foreach ($files as $file): ?>
<?= $file->id ?>
&nbsp;
<a href="/tracks/getfile/id/<?= $file->id ?>" title="Скачать файл">
<span class="glyphicon glyphicon-download" aria-hidden="true"></span>
</a>
&nbsp;&nbsp;
<a href="/tracks/import/id/<?= $file->id ?>" title="Импортировать ещё раз">
<span class="glyphicon glyphicon-retweet" aria-hidden="true"></span>
</a>
&nbsp;
<?= $file->name ?>
— <?= $file->filename ?>
[<?= $file->tracksCount?> . <?= $file->tptCount ?> . <?= $file->wptCount ?>]
<br/>
<?php endforeach;
} else {
print 'Пока ничего не загружено';
}