Project

General

Profile

1
<!-- BEGIN main_block -->
2
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
<head>
5
<title>Browse Media</title>
6
<link href="{THEME_URL}/media.css" rel="stylesheet" type="text/css" />
7
<script language="javascript" type="text/javascript">
8
function confirm_link(message, url) {
9
	if(confirm(message)) location.href = url;
10
}
11
</script>
12

    
13
</head>
14
<body>
15

    
16
<table cellpadding="4" cellspacing="0" border="0" width="100%" style="border-bottom: 1px solid #35373a; width: 100%;">
17
<tr style="background-color: #ECF1F3;">
18
	<td width="16" align="center" style="padding-left: 10px;">
19
		<a href="{PARENT_DIR_LINK}">
20
			<img src="{THEME_URL}/images/up_folder_16.png" border="0" class="{DISPLAY_UP_ARROW}" alt="^" />
21
		</a>
22
	</td>
23
	<td width="50">
24
		<a href="{PARENT_DIR_LINK}" class="{DISPLAY_UP_ARROW}">
25
			{TEXT_UP}
26
		</a>
27
	</td>
28
	<td align="center">
29
		{TEXT_CURRENT_FOLDER}: {MEDIA_DIRECTORY}{CURRENT_DIR}
30
	</td>
31
	<td width="16">
32
		<a href="browse.php?dir={CURRENT_DIR}">
33
			<img src="{THEME_URL}/images/reload_16.png" border="0" alt="" />
34
		</a>
35
	</td>
36
	<td width="50">
37
		<a href="browse.php?dir={CURRENT_DIR}">
38
			{TEXT_RELOAD}
39
		</a>
40
	</td>
41
</tr>
42
</table>
43

    
44
<table cellpadding="4" cellspacing="0" border="0" width="100%" class="{DISPLAY_LIST_TABLE}">
45
<!-- BEGIN list_block -->
46
<tr style="background-color: #{ROW_BG_COLOR};" onmouseover="this.style.backgroundColor = '#F1F8DD'" onmouseout="this.style.backgroundColor = '#{ROW_BG_COLOR}'">
47
	<td width="18" style="padding-left: 10px;">
48
		<a href="{LINK}" target="{LINK_TARGET}">
49
			<img src="{FILETYPE_ICON}" class="{DISPLAY_ICON}" border="0" alt="" />
50
		</a>
51
	</td>
52
	<td>
53
		<a href="{LINK}" target="{LINK_TARGET}">
54
			{NAME}
55
		</a>
56
	</td>
57
	<td width="85" align="right" class="{DISPLAY_RENAME}">
58
		<a href="rename.php?dir={CURRENT_DIR}&id={TEMP_ID}">
59
			<img src="{THEME_URL}/images/modify_16.png" alt="" border="0" /> {TEXT_RENAME}
60
		</a>
61
	</td>
62
	<td width="70" style="padding-right: 15px;" align="right" class="{DISPLAY_DELETE}">
63
		<a href="#" onclick="javascript: confirm_link('{CONFIRM_DELETE}\n {NAME_SLASHED}', 'delete.php?dir={CURRENT_DIR}&id={TEMP_ID}');">
64
			<img src="{THEME_URL}/images/delete_16.png" alt="" border="0" /> {TEXT_DELETE}
65
		</a>
66
	</td>
67
</tr>
68
<!-- END list_block -->
69
</table>
70

    
71
<font class="{DISPLAY_NONE_FOUND}">
72
<br />
73
&nbsp; &nbsp; 
74
{NONE_FOUND}
75
</font>
76

    
77
</body>
78
</html>
79

    
80
<!-- END main_block -->
(15-15/32)