commit
5e560e9bd9
Before Width: | Height: | Size: 525 B |
Before Width: | Height: | Size: 512 B |
Before Width: | Height: | Size: 527 B |
Before Width: | Height: | Size: 484 B |
@ -1,4 +1,4 @@ |
||||
<form class='searchbox' action='<?php echo $_['searchurl']?>' method='post'>
|
||||
<input name='query' value='<?php if(isset($_POST['query'])){echo $_POST['query'];};?>'/>
|
||||
<input type='submit' value='<?php echo $l->t( 'Search' ); ?>' class='prettybutton'/>
|
||||
</form> |
||||
<form class="searchbox" action="<?php echo $_['searchurl']?>" method="post">
|
||||
<input type="text" name="query" value="<?php if(isset($_POST['query'])){echo $_POST['query'];};?>" class="prettybutton" />
|
||||
<input type="submit" value="<?php echo $l->t( 'Search' ); ?>" class="prettybutton" />
|
||||
</form> |
||||
|
@ -1,9 +1,11 @@ |
||||
<?php foreach($_["files"] as $file): ?> |
||||
<tr data-file='<?php echo $file['name'];?>' data-type='<?php echo ($file["type"] == "dir")?'dir':'file'?>' data-mime='<?php echo $file["mime"]?>'>
|
||||
<?php foreach($_['files'] as $file): |
||||
$simple_file_size = simple_file_size($file['size']); |
||||
$simple_size_color = 200-intval(pow($simple_file_size,3)); ?> |
||||
<tr data-file="<?php echo $file['name'];?>" data-type="<?php echo ($file['type'] == 'dir')?'dir':'file'?>" data-mime="<?php echo $file['mime']?>">
|
||||
<td class="selection"><input type="checkbox" /></td> |
||||
<td class="filename"><a style="background-image:url(<?php if($file["type"] == "dir") echo mimetype_icon("dir"); else echo mimetype_icon($file["mime"]); ?>)" href="<?php if($file["type"] == "dir") echo link_to("files", "index.php?dir=".$file["directory"]."/".$file["name"]); else echo link_to("files", "download.php?file=".$file["directory"]."/".$file["name"]); ?>" title=""><?php echo htmlspecialchars($file["name"]); ?></a></td>
|
||||
<td class="filesize"><?php echo human_file_size($file["size"]); ?></td>
|
||||
<td class="date"><?php echo $file["date"]; ?></td>
|
||||
<td class="fileaction"><a href="" title="+" class='dropArrow'></a></td> |
||||
<td class="filename"><a style="background-image:url(<?php if($file['type'] == 'dir') echo mimetype_icon('dir'); else echo mimetype_icon($file['mime']); ?>)" href="<?php if($file['type'] == 'dir') echo link_to('files', 'index.php?dir='.$file['directory'].'/'.$file['name']); else echo link_to('files', 'download.php?file='.$file['directory'].'/'.$file['name']); ?>" title=""><?php if($file['type'] == 'dir') echo "<strong>"; echo htmlspecialchars($file['name']); if($file['type'] == 'dir') echo "</strong>"; ?></a></td>
|
||||
<td class="filesize" title="<?php echo human_file_size($file['size']); ?>" style="color:rgb(<?php echo $simple_size_color.','.$simple_size_color.','.$simple_size_color ?>)"><?php echo $simple_file_size; ?></td>
|
||||
<td class="date"><?php echo $file['date']; ?></td>
|
||||
<td class="fileaction"><a href="" title="+" class="dropArrow"></a></td> |
||||
</tr> |
||||
<?php endforeach; ?> |
||||
<?php endforeach; ?> |
||||
|
Loading…
Reference in new issue