summaryrefslogtreecommitdiffstats
path: root/application/views/file/nav_history.php
blob: 1a3e55c0b82f8fb583668a62b1d595aeae4a972b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<ul class="nav nav-tabs">
<?php
$nav = array(
	"List" => "file/upload_history",
	"Thumbnails" => "file/upload_history_thumbnails",
);

$CI =& get_instance();

foreach ($nav as $key => $item) {
	?>
		<li <?php echo $CI->uri->uri_string() == $item ? 'class="active"' : ''; ?>>
			<a href="<?php echo site_url($item); ?>"><?php echo $key; ?></a>
		</li>
	<?php
}
?>
</ul>