| 1 |
2
|
Manuela
|
<!--
|
| 2 |
|
|
@version $Id: media_browse.htt 75 2017-03-10 10:47:06Z manu $
|
| 3 |
|
|
-->
|
| 4 |
|
|
<!-- BEGIN main_block -->
|
| 5 |
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
| 6 |
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
| 7 |
|
|
<head>
|
| 8 |
|
|
<title>Browse Media</title>
|
| 9 |
|
|
<link href="{THEME_URL}/browse.css" rel="stylesheet" type="text/css" />
|
| 10 |
|
|
<script type="text/javascript">
|
| 11 |
|
|
function confirm_link(message, url) {
|
| 12 |
|
|
if(confirm(message)) location.href = url;
|
| 13 |
|
|
}
|
| 14 |
|
|
</script>
|
| 15 |
|
|
<script type="text/javascript" src="overlib.js"></script>
|
| 16 |
|
|
</head>
|
| 17 |
|
|
<body onload="parent.document.create.target.value = '{MEDIA_DIRECTORY}{CURRENT_DIR}'; parent.document.upload.target.value = '{MEDIA_DIRECTORY}{CURRENT_DIR}';">
|
| 18 |
|
|
|
| 19 |
|
|
<table style="border-bottom: 1px solid #666;width: 100%; height: 1.9525em; border-collapse: collapse;">
|
| 20 |
|
|
<tbody style="position: relative; width: 100%; height: 2.225em; padding: 0.925em 0; ">
|
| 21 |
|
|
<tr style="background-color: #DDD; width: 100%;">
|
| 22 |
|
|
<td style="text-align: left; padding: 0.925em 0; padding-left: 1.0525em; width: 1.725em; ">
|
| 23 |
|
|
<a href="{PARENT_DIR_LINK}"><img src="{THEME_URL}/images/up_folder_16.png" class="{DISPLAY_UP_ARROW}" alt="^" /></a>
|
| 24 |
|
|
</td>
|
| 25 |
|
|
<td style="width: 10%;padding: 0.925em 0;">
|
| 26 |
|
|
<a href="{PARENT_DIR_LINK}" class="{DISPLAY_UP_ARROW}">{TEXT_UP}</a>
|
| 27 |
|
|
</td>
|
| 28 |
|
|
<td style="float: left; padding: 0.925em 0; padding-left: 0.725em; ">
|
| 29 |
|
|
<strong>{TEXT_CURRENT_FOLDER}: {MEDIA_DIRECTORY}{CURRENT_DIR}</strong>
|
| 30 |
|
|
</td>
|
| 31 |
|
|
</tr>
|
| 32 |
|
|
</tbody>
|
| 33 |
|
|
</table>
|
| 34 |
|
|
<div style="position: fixed;"></div>
|
| 35 |
|
|
<table class="{DISPLAY_LIST_TABLE}" style="width: 100%; position: relative;">
|
| 36 |
|
|
<tbody>
|
| 37 |
|
|
<!-- BEGIN list_block -->
|
| 38 |
|
|
<tr style="background-color: #{ROW_BG_COLOR};">
|
| 39 |
|
|
<td width="18" style="padding-left: 10px;">
|
| 40 |
|
|
<a href="{LINK}" target="{LINK_TARGET}"><img {MOUSEOVER} src="{FT_ICON}" class="{DISPLAY_ICON}" alt="" /></a>
|
| 41 |
|
|
</td>
|
| 42 |
|
|
<td>
|
| 43 |
|
|
<a {MOUSEOVER} href="{LINK}" target="{LINK_TARGET}">{NAME}</a>
|
| 44 |
|
|
</td>
|
| 45 |
|
|
<td width="120">
|
| 46 |
|
|
<small>{IMAGEDETAIL}<br />{DATE}</small>
|
| 47 |
|
|
</td>
|
| 48 |
|
|
<td width="60" align="right" class="{DISPLAY_RENAME}">
|
| 49 |
|
|
<a href="rename.php?dir={CURRENT_DIR}&id={TEMP_ID}"><img src="{THEME_URL}/images/modify_16.png" alt="{TEXT_RENAME}" /> </a>
|
| 50 |
|
|
<a href="#" onclick="javascript: confirm_link('{CONFIRM_DELETE}\n {NAME_SLASHED}', 'delete.php?dir={CURRENT_DIR}&id={TEMP_ID}');"><img src="{THEME_URL}/images/delete_16.png" alt="{TEXT_DELETE}" /></a>
|
| 51 |
|
|
</td>
|
| 52 |
|
|
<td width="16" align="right" class="">
|
| 53 |
|
|
<img src="{THEME_URL}/images/{IMAGE_EXIST}" title="{IMAGE_TITLE}" alt="{IMAGE_TITLE}" />
|
| 54 |
|
|
</td>
|
| 55 |
|
|
</tr>
|
| 56 |
|
|
<!-- END list_block -->
|
| 57 |
|
|
</tbody>
|
| 58 |
|
|
</table>
|
| 59 |
|
|
|
| 60 |
|
|
<font class="{DISPLAY_NONE_FOUND}"><br /> {NONE_FOUND}</font>
|
| 61 |
|
|
</body>
|
| 62 |
|
|
</html>
|
| 63 |
|
|
|
| 64 |
|
|
|
| 65 |
|
|
<!-- END main_block -->
|