ACC SHELL
<h1>View files</h1>
<table>
<tr>
<td><?php echo 'Id' ?></td>
<td><?php echo $files['File']['id']?></td>
</tr>
<tr>
<td><?php echo 'File Name' ?></td>
<td><?php echo $files['File']['file_name']?></td>
</tr>
<tr>
<td><?php echo 'File Type' ?></td>
<td><?php echo $files['File']['file_type']?></td>
</tr>
<tr>
<td><?php echo 'File Size' ?></td>
<td><?php echo $files['File']['file_size']?></td>
</tr>
<tr>
<td><?php echo 'Content Type' ?></td>
<td><?php echo $files['File']['content_type']?></td>
</tr>
</table>
<ul>
<li><?php echo $html->link('Edit File', '/files/edit/' . $files['File']['id']) ?> </li>
<li><?php echo $html->link('Delete File', '/files/delete/' . $files['File']['id']) ?> </li>
<li><?php echo $html->link('List File', '/files/index') ?> </li>
<li><?php echo $html->link('New File', '/files/add') ?> </li>
</ul>
ACC SHELL 2018