20 lines
681 B
PHP
20 lines
681 B
PHP
<div id='file-link'>
|
|
To download these Alaska files, right click on the links below and click
|
|
"Save Target As" or "Save Link As" (depending on what browser you are using):
|
|
</div>
|
|
<div class='admin_summary_box' id='news_summary'>
|
|
<h3>Current Uploaded Files</h3>
|
|
<?php if(count($this->data['files']) > 0): ?>
|
|
<table class='summary_table'>
|
|
<?php foreach($this->data['files'] as $file): ?>
|
|
<tr>
|
|
<td class='summary_data'>
|
|
<a href='/alaska/uploads/<?php echo $file ?>' title='<?php echo $file ?>'><?php echo $file ?></a>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</table>
|
|
<?php else: ?>
|
|
<p>There are currently no files available.</p>
|
|
<?php endif; ?>
|
|
</div>
|