Verzeichnisstruktur phpBB-3.1.0
- Veröffentlicht
- 27.10.2014
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
plupload.html
01 <script type="text/javascript">
02 //<![CDATA[
03 phpbb.plupload = {
04 i18n: {
05 'b': '{LA_BYTES_SHORT}',
06 'kb': '{LA_KB}',
07 'mb': '{LA_MB}',
08 'gb': '{LA_GB}',
09 'tb': '{LA_TB}',
10 'Add Files': '{LA_PLUPLOAD_ADD_FILES}',
11 'Add files to the upload queue and click the start button.': '{LA_PLUPLOAD_ADD_FILES_TO_QUEUE}',
12 'Close': '{LA_PLUPLOAD_CLOSE}',
13 'Drag files here.': '{LA_PLUPLOAD_DRAG}',
14 'Duplicate file error.': '{LA_PLUPLOAD_DUPLICATE_ERROR}',
15 'File: %s': '{LA_PLUPLOAD_FILE}',
16 'File: %s, size: %d, max file size: %d': '{LA_PLUPLOAD_FILE_DETAILS}',
17 'File count error.': '{LA_PLUPLOAD_ERR_FILE_COUNT}',
18 'File extension error.': '{LA_PLUPLOAD_EXTENSION_ERROR}',
19 'File size error.': '{LA_PLUPLOAD_SIZE_ERROR}',
20 'File too large:': '{LA_PLUPLOAD_ERR_FILE_TOO_LARGE}',
21 'Filename': '{LA_PLUPLOAD_FILENAME}',
22 'Generic error.': '{LA_PLUPLOAD_GENERIC_ERROR}',
23 'HTTP Error.': '{LA_PLUPLOAD_HTTP_ERROR}',
24 'Image format either wrong or not supported.': '{LA_PLUPLOAD_IMAGE_FORMAT}',
25 'Init error.': '{LA_PLUPLOAD_INIT_ERROR}',
26 'IO error.': '{LA_PLUPLOAD_IO_ERROR}',
27 'Invalid file extension:': '{LA_PLUPLOAD_ERR_FILE_INVALID_EXT}',
28 'N/A': '{LA_PLUPLOAD_NOT_APPLICABLE}',
29 'Runtime ran out of available memory.': '{LA_PLUPLOAD_ERR_RUNTIME_MEMORY}',
30 'Security error.': '{LA_PLUPLOAD_SECURITY_ERROR}',
31 'Select files': '{LA_PLUPLOAD_SELECT_FILES}',
32 'Size': '{LA_PLUPLOAD_SIZE}',
33 'Start Upload': '{LA_PLUPLOAD_START_UPLOAD}',
34 'Start uploading queue': '{LA_PLUPLOAD_START_CURRENT_UPLOAD}',
35 'Status': '{LA_PLUPLOAD_STATUS}',
36 'Stop Upload': '{LA_PLUPLOAD_STOP_UPLOAD}',
37 'Stop current upload': '{LA_PLUPLOAD_STOP_CURRENT_UPLOAD}',
38 "Upload URL might be wrong or doesn't exist.": '{LA_PLUPLOAD_ERR_UPLOAD_URL}',
39 'Uploaded %d/%d files': '{LA_PLUPLOAD_UPLOADED}',
40 '%d files queued': '{LA_PLUPLOAD_FILES_QUEUED}',
41 '%s already present in the queue.': '{LA_PLUPLOAD_ALREADY_QUEUED}'
42 },
43 config: {
44 runtimes: 'html5',
45 url: '{S_PLUPLOAD_URL}',
46 max_file_size: '{FILESIZE}b',
47 chunk_size: '{CHUNK_SIZE}b',
48 unique_names: true,
49 filters: [{FILTERS}],
50 {S_RESIZE}
51 headers: {'X-PHPBB-USING-PLUPLOAD': '1', 'X-Requested-With': 'XMLHttpRequest'},
52 file_data_name: 'fileupload',
53 multipart_params: {'add_file': '{LA_ADD_FILE}'},
54 form_hook: '#postform',
55 browse_button: 'add_files',
56 drop_element : 'message',
57 },
58 lang: {
59 ERROR: '{LA_ERROR}',
60 TOO_MANY_ATTACHMENTS: '{LA_TOO_MANY_ATTACHMENTS}',
61 },
62 order: '{ATTACH_ORDER}',
63 maxFiles: {MAX_ATTACHMENTS},
64 data: {S_ATTACH_DATA},
65 }
66 //]]>
67 </script>
68 <!-- INCLUDEJS {T_ASSETS_PATH}/plupload/plupload.full.min.js -->
69 <!-- INCLUDEJS {T_ASSETS_PATH}/javascript/plupload.js -->
70