Project

General

Profile

1
<!-- BEGIN main_block -->
2

    
3
<h2>{HEADING_BROWSE_MEDIA}</h2>
4

    
5
<iframe width="100%" height="320px" align="middle" src="browse.php"></iframe>
6

    
7
<br />
8

    
9

    
10

    
11
<form name="create" action="create.php" method="post" class="{DISPLAY_CREATE}">
12

    
13
<br />
14

    
15
<h2>{HEADING_CREATE_FOLDER}</h2>
16

    
17
<table cellpadding="3" cellspacing="0" border="0" width="100%">
18
<tr>
19
	<td width="100">{TEXT_TARGET_FOLDER}:</td>
20
	<td>
21
		<select name="target" style="width: 100%;">
22
			<option value="{MEDIA_DIRECTORY}" selected="selected">{MEDIA_DIRECTORY}</option>
23
			<!-- BEGIN dir_list_block -->
24
				<option value="{NAME}">{NAME}</option>
25
			<!-- END dir_list_block -->
26
		</select>
27
	</td>
28
</tr>
29

    
30
</table>
31
<table cellpadding="3" cellspacing="0" border="0" width="100%">
32
<tr>
33
	<td width="100">{TEXT_NAME}:</td>
34
	<td>
35
		<input type="text" name="name" style="width: 100%;" />
36
	</td>
37
	<td align="right" width="160">
38
		<input type="submit" name="submit" value="{TEXT_CREATE_FOLDER}" style="width: 160px;" />
39
	</td>
40
</tr>
41
</table>
42

    
43
</form>
44

    
45
<form name="upload" action="upload.php" method="post" enctype="multipart/form-data" class="{DISPLAY_UPLOAD}">
46

    
47
<br />
48

    
49
<h2>{HEADING_UPLOAD_FILES}</h2>
50

    
51
<table cellpadding="3" cellspacing="0" border="0" width="100%">
52
<tr>
53
	<td width="100">{TEXT_TARGET_FOLDER}:</td>
54
	<td>
55
		<select name="target" style="width: 100%;">
56
			<option value="{MEDIA_DIRECTORY}" selected="selected">{MEDIA_DIRECTORY}</option>
57
			<!-- BEGIN dir_list_block -->
58
				<option value="{NAME}">{NAME}</option>
59
			<!-- END dir_list_block -->
60
		</select>
61
	</td>
62
</tr>
63
</table>
64
<table cellpadding="3" cellspacing="0" border="0" align="center" width="100%">
65
<tr>
66
	<td>
67
		<input type="checkbox" name="overwrite" id="overwrite" value="yes" />
68
		<label for="overwrite">
69
		{TEXT_OVERWRITE_EXISTING} {TEXT_FILES}
70
		</label>
71
	</td>
72
	<td width="160">
73
		<input type="submit" name="submit" value="{TEXT_UPLOAD_FILES}" style="width: 160px;" />
74
	</td>
75
</tr>
76
</table>
77
<table cellpadding="3" cellspacing="0" border="0" width="100%">
78
<tr>
79
	<td width="50%" align="left">
80
		<input type="file" size="42" name="file1" />
81
	</td>
82
	<td width="50%" align="right">
83
		<input type="file" size="42" name="file2" />
84
	</td>
85
</tr>
86
<tr>
87
	<td width="50%" align="left">
88
		<input type="file" size="42" name="file3" />
89
	</td>
90
	<td width="50%" align="right">
91
		<input type="file" size="42" name="file4" />
92
	</td>
93
</tr>
94
<tr>
95
	<td width="50%" align="left">
96
		<input type="file" size="42" name="file5" />
97
	</td>
98
	<td width="50%" align="right">
99
		<input type="file" size="42" name="file6" />
100
	</td>
101
</tr>
102
<tr>
103
	<td width="50%" align="left">
104
		<input type="file" size="42" name="file7" />
105
	</td>
106
	<td width="50%" align="right">
107
		<input type="file" size="42" name="file8" />
108
	</td>
109
</tr>
110
<tr>
111
	<td width="50%" align="left">
112
		<input type="file" size="42" name="file9" />
113
	</td>
114
	<td width="50%" align="right">
115
		<input type="file" size="42" name="file10" />
116
	</td>
117
</tr>
118
</table>
119

    
120
</form>
121

    
122
<!-- END main_block -->
(14-14/31)