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