Merge branch 'MDL-35924_m23' of https://github.com/markn86/moodle into MOODLE_23_STABLE
[moodle.git] / files / renderer.php
blob9fc233caaae9cc358f0e4e816b9b9f230a136d36
1 <?php
2 ///////////////////////////////////////////////////////////////////////////
3 // //
4 // This file is part of Moodle - http://moodle.org/ //
5 // Moodle - Modular Object-Oriented Dynamic Learning Environment //
6 // //
7 // Moodle is free software: you can redistribute it and/or modify //
8 // it under the terms of the GNU General Public License as published by //
9 // the Free Software Foundation, either version 3 of the License, or //
10 // (at your option) any later version. //
11 // //
12 // Moodle is distributed in the hope that it will be useful, //
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of //
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
15 // GNU General Public License for more details. //
16 // //
17 // You should have received a copy of the GNU General Public License //
18 // along with Moodle. If not, see <http://www.gnu.org/licenses/>. //
19 // //
20 ///////////////////////////////////////////////////////////////////////////
22 defined('MOODLE_INTERNAL') || die();
24 /**
25 * Rendering of files viewer related widgets.
26 * @package core
27 * @subpackage file
28 * @copyright 2010 Dongsheng Cai
29 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
30 * @since Moodle 2.0
33 /**
34 * File browser render
36 * @copyright 2010 Dongsheng Cai
37 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
38 * @since Moodle 2.0
40 class core_files_renderer extends plugin_renderer_base {
42 public function files_tree_viewer(file_info $file_info, array $options = null) {
43 $tree = new files_tree_viewer($file_info, $options);
44 return $this->render($tree);
47 public function render_files_tree_viewer(files_tree_viewer $tree) {
48 $html = $this->output->heading_with_help(get_string('coursefiles'), 'courselegacyfiles', 'moodle');
50 $html .= $this->output->container_start('coursefilesbreadcrumb');
51 foreach($tree->path as $path) {
52 $html .= $path;
53 $html .= ' / ';
55 $html .= $this->output->container_end();
57 $html .= $this->output->box_start();
58 $table = new html_table();
59 $table->head = array(get_string('name'), get_string('lastmodified'), get_string('size', 'repository'), get_string('type', 'repository'));
60 $table->align = array('left', 'left', 'left', 'left');
61 $table->width = '100%';
62 $table->data = array();
64 foreach ($tree->tree as $file) {
65 $filedate = $filesize = $filetype = '';
66 if ($file['filedate']) {
67 $filedate = userdate($file['filedate'], get_string('strftimedatetimeshort', 'langconfig'));
69 if (empty($file['isdir'])) {
70 if ($file['filesize']) {
71 $filesize = display_size($file['filesize']);
73 $fileicon = file_file_icon($file, 24);
74 $filetype = get_mimetype_description($file);
75 } else {
76 $fileicon = file_folder_icon(24);
78 $table->data[] = array(
79 html_writer::link($file['url'], $this->output->pix_icon($fileicon, get_string('icon')) . ' ' . $file['filename']),
80 $filedate,
81 $filesize,
82 $filetype
86 $html .= html_writer::table($table);
87 $html .= $this->output->single_button(new moodle_url('/files/coursefilesedit.php', array('contextid'=>$tree->context->id)), get_string('coursefilesedit'), 'get');
88 $html .= $this->output->box_end();
89 return $html;
92 /**
93 * Prints the file manager and initializes all necessary libraries
95 * <pre>
96 * $fm = new form_filemanager($options);
97 * $output = get_renderer('core', 'files');
98 * echo $output->render($fm);
99 * </pre>
101 * @param form_filemanager $fm File manager to render
102 * @return string HTML fragment
104 public function render_form_filemanager($fm) {
105 static $filemanagertemplateloaded;
106 $html = $this->fm_print_generallayout($fm);
107 $module = array(
108 'name'=>'form_filemanager',
109 'fullpath'=>'/lib/form/filemanager.js',
110 'requires' => array('core_filepicker', 'base', 'io-base', 'node', 'json', 'core_dndupload', 'panel', 'resize-plugin', 'dd-plugin'),
111 'strings' => array(
112 array('error', 'moodle'), array('info', 'moodle'), array('confirmdeletefile', 'repository'),
113 array('draftareanofiles', 'repository'), array('entername', 'repository'), array('enternewname', 'repository'),
114 array('invalidjson', 'repository'), array('popupblockeddownload', 'repository'),
115 array('unknownoriginal', 'repository'), array('confirmdeletefolder', 'repository'),
116 array('confirmdeletefilewithhref', 'repository'), array('confirmrenamefolder', 'repository'),
117 array('confirmrenamefile', 'repository')
120 if (empty($filemanagertemplateloaded)) {
121 $filemanagertemplateloaded = true;
122 $this->page->requires->js_init_call('M.form_filemanager.set_templates',
123 array($this->filemanager_js_templates()), true, $module);
125 $this->page->requires->js_init_call('M.form_filemanager.init', array($fm->options), true, $module);
127 // non javascript file manager
128 $html .= '<noscript>';
129 $html .= "<div><object type='text/html' data='".$fm->get_nonjsurl()."' height='160' width='600' style='border:1px solid #000'></object></div>";
130 $html .= '</noscript>';
133 return $html;
137 * Returns html for displaying one file manager
139 * The main element in HTML must have id="filemanager-{$client_id}" and
140 * class="filemanager fm-loading";
141 * After all necessary code on the page (both html and javascript) is loaded,
142 * the class fm-loading will be removed and added class fm-loaded;
143 * The main element (class=filemanager) will be assigned the following classes:
144 * 'fm-maxfiles' - when filemanager has maximum allowed number of files;
145 * 'fm-nofiles' - when filemanager has no files at all (although there might be folders);
146 * 'fm-noitems' - when current view (folder) has no items - neither files nor folders;
147 * 'fm-updating' - when current view is being updated (usually means that loading icon is to be displayed);
148 * 'fm-nomkdir' - when 'Make folder' action is unavailable (empty($fm->options->subdirs) == true)
150 * Element with class 'filemanager-container' will be holding evens for dnd upload (dragover, etc.).
151 * It will have class:
152 * 'dndupload-ready' - when a file is being dragged over the browser
153 * 'dndupload-over' - when file is being dragged over this filepicker (additional to 'dndupload-ready')
154 * 'dndupload-uploading' - during the upload process (note that after dnd upload process is
155 * over, the file manager will refresh the files list and therefore will have for a while class
156 * fm-updating. Both waiting processes should look similar so the images don't jump for user)
158 * If browser supports Drag-and-drop, the body element will have class 'dndsupported',
159 * otherwise - 'dndnotsupported';
161 * Element with class 'fp-content' will be populated with files list;
162 * Element with class 'fp-btn-add' will hold onclick event for adding a file (opening filepicker);
163 * Element with class 'fp-btn-mkdir' will hold onclick event for adding new folder;
164 * Element with class 'fp-btn-download' will hold onclick event for download action;
166 * Element with class 'fp-path-folder' is a template for one folder in path toolbar.
167 * It will hold mouse click event and will be assigned classes first/last/even/odd respectfully.
168 * Parent element will receive class 'empty' when there are no folders to be displayed;
169 * The content of subelement with class 'fp-path-folder-name' will be substituted with folder name;
171 * Element with class 'fp-viewbar' will have the class 'enabled' or 'disabled' when view mode
172 * can be changed or not;
173 * Inside element with class 'fp-viewbar' there are expected elements with classes
174 * 'fp-vb-icons', 'fp-vb-tree' and 'fp-vb-details'. They will handle onclick events to switch
175 * between the view modes, the last clicked element will have the class 'checked';
177 * @param form_filemanager $fm
178 * @return string
180 private function fm_print_generallayout($fm) {
181 global $OUTPUT;
182 $options = $fm->options;
183 $client_id = $options->client_id;
184 $straddfile = get_string('addfile', 'repository');
185 $strmakedir = get_string('makeafolder', 'moodle');
186 $strdownload = get_string('downloadfolder', 'repository');
187 $strloading = get_string('loading', 'repository');
188 $strdroptoupload = get_string('droptoupload', 'moodle');
189 $icon_progress = $OUTPUT->pix_icon('i/loading_small', $strloading).'';
190 $restrictions = $this->fm_print_restrictions($fm);
191 $strdndnotsupported = get_string('dndnotsupported_insentence', 'moodle').$OUTPUT->help_icon('dndnotsupported');
192 $strdndenabledinbox = get_string('dndenabled_inbox', 'moodle');
193 $loading = get_string('loading', 'repository');
195 $html = '
196 <div id="filemanager-'.$client_id.'" class="filemanager fm-loading">
197 <div class="fp-restrictions">
198 '.$restrictions.'
199 <span class="dnduploadnotsupported-message"> - '.$strdndnotsupported.' </span>
200 </div>
201 <div class="fp-navbar">
202 <div class="filemanager-toolbar">
203 <div class="fp-toolbar">
204 <div class="{!}fp-btn-add"><a href="#"><img src="'.$this->pix_url('a/add_file').'" /> '.$straddfile.'</a></div>
205 <div class="{!}fp-btn-mkdir"><a href="#"><img src="'.$this->pix_url('a/create_folder').'" /> '.$strmakedir.'</a></div>
206 <div class="{!}fp-btn-download"><a href="#"><img src="'.$this->pix_url('a/download_all').'" /> '.$strdownload.'</a></div>
207 </div>
208 <div class="{!}fp-viewbar">
209 <a class="{!}fp-vb-icons" href="#"></a>
210 <a class="{!}fp-vb-details" href="#"></a>
211 <a class="{!}fp-vb-tree" href="#"></a>
212 </div>
213 </div>
214 <div class="fp-pathbar">
215 <span class="{!}fp-path-folder"><a class="{!}fp-path-folder-name" href="#"></a></span>
216 </div>
217 </div>
218 <div class="filemanager-loading mdl-align">'.$icon_progress.'</div>
219 <div class="filemanager-container" >
220 <div class="fm-content-wrapper">
221 <div class="fp-content"></div>
222 <div class="fm-empty-container">
223 <div class="dndupload-message">'.$strdndenabledinbox.'<br/><div class="dndupload-arrow"></div></div>
224 </div>
225 <div class="dndupload-target">'.$strdroptoupload.'<br/><div class="dndupload-arrow"></div></div>
226 <div class="dndupload-uploadinprogress">'.$icon_progress.'</div>
227 </div>
228 <div class="filemanager-updating">'.$icon_progress.'</div>
229 </div>
230 </div>';
231 return preg_replace('/\{\!\}/', '', $html);
235 * FileManager JS template for displaying one file in 'icon view' mode.
237 * Except for elements described in fp_js_template_iconfilename, this template may also
238 * contain element with class 'fp-contextmenu'. If context menu is available for this
239 * file, the top element will receive the additional class 'fp-hascontextmenu' and
240 * the element with class 'fp-contextmenu' will hold onclick event for displaying
241 * the context menu.
243 * @see fp_js_template_iconfilename()
244 * @return string
246 private function fm_js_template_iconfilename() {
247 $rv = '
248 <div class="fp-file">
249 <a href="#">
250 <div style="position:relative;">
251 <div class="{!}fp-thumbnail"></div>
252 <div class="fp-reficons1"></div>
253 <div class="fp-reficons2"></div>
254 </div>
255 <div class="fp-filename-field">
256 <div class="{!}fp-filename"></div>
257 </div>
258 </a>
259 <a class="{!}fp-contextmenu" href="#">'.$this->pix_icon('i/menu', 'â–¶').'</a>
260 </div>';
261 return preg_replace('/\{\!\}/', '', $rv);
265 * FileManager JS template for displaying file name in 'table view' and 'tree view' modes.
267 * Except for elements described in fp_js_template_listfilename, this template may also
268 * contain element with class 'fp-contextmenu'. If context menu is available for this
269 * file, the top element will receive the additional class 'fp-hascontextmenu' and
270 * the element with class 'fp-contextmenu' will hold onclick event for displaying
271 * the context menu.
273 * @todo MDL-32736 remove onclick="return false;"
274 * @see fp_js_template_listfilename()
275 * @return string
277 private function fm_js_template_listfilename() {
278 $rv = '
279 <span class="fp-filename-icon">
280 <a href="#">
281 <span class="{!}fp-icon"></span>
282 <span class="fp-reficons1"></span>
283 <span class="fp-reficons2"></span>
284 <span class="{!}fp-filename"></span>
285 </a>
286 <a class="{!}fp-contextmenu" href="#" onclick="return false;">'.$this->pix_icon('i/menu', 'â–¶').'</a>
287 </span>';
288 return preg_replace('/\{\!\}/', '', $rv);
292 * FileManager JS template for displaying 'Make new folder' dialog.
294 * Must be wrapped in an element, CSS for this element must define width and height of the window;
296 * Must have one input element with type="text" (for users to enter the new folder name);
298 * content of element with class 'fp-dlg-curpath' will be replaced with current path where
299 * new folder is about to be created;
300 * elements with classes 'fp-dlg-butcreate' and 'fp-dlg-butcancel' will hold onclick events;
302 * @return string
304 private function fm_js_template_mkdir() {
305 $rv = '
306 <div class="filemanager fp-mkdir-dlg">
307 <div class="fp-mkdir-dlg-text">
308 <label>' . get_string('newfoldername', 'repository') . '</label><br/>
309 <input type="text" />
310 </div>
311 <button class="{!}fp-dlg-butcreate">'.get_string('makeafolder').'</button>
312 <button class="{!}fp-dlg-butcancel">'.get_string('cancel').'</button>
313 </div>';
314 return preg_replace('/\{\!\}/', '', $rv);
318 * FileManager JS template for error/info message displayed as a separate popup window.
320 * @see fp_js_template_message()
321 * @return string
323 private function fm_js_template_message() {
324 return $this->fp_js_template_message();
328 * FileManager JS template for window with file information/actions.
330 * All content must be enclosed in one element, CSS for this class must define width and
331 * height of the window;
333 * Thumbnail image will be added as content to the element with class 'fp-thumbnail';
335 * Inside the window the elements with the following classnames must be present:
336 * 'fp-saveas', 'fp-author', 'fp-license', 'fp-path'. Inside each of them must be
337 * one input element (or select in case of fp-license and fp-path). They may also have labels.
338 * The elements will be assign with class 'uneditable' and input/select element will become
339 * disabled if they are not applicable for the particular file;
341 * There may be present elements with classes 'fp-original', 'fp-datemodified', 'fp-datecreated',
342 * 'fp-size', 'fp-dimensions', 'fp-reflist'. They will receive additional class 'fp-unknown' if
343 * information is unavailable. If there is information available, the content of embedded
344 * element with class 'fp-value' will be substituted with the value;
346 * The value of Original ('fp-original') is loaded in separate request. When it is applicable
347 * but not yet loaded the 'fp-original' element receives additional class 'fp-loading';
349 * The value of 'Aliases/Shortcuts' ('fp-reflist') is also loaded in separate request. When it
350 * is applicable but not yet loaded the 'fp-original' element receives additional class
351 * 'fp-loading'. The string explaining that XX references exist will replace content of element
352 * 'fp-refcount'. Inside '.fp-reflist .fp-value' each reference will be enclosed in <li>;
354 * Elements with classes 'fp-file-update', 'fp-file-download', 'fp-file-delete', 'fp-file-zip',
355 * 'fp-file-unzip', 'fp-file-setmain' and 'fp-file-cancel' will hold corresponding onclick
356 * events (there may be several elements with class 'fp-file-cancel');
358 * When confirm button is pressed and file is being selected, the top element receives
359 * additional class 'loading'. It is removed when response from server is received.
361 * When any of the input fields is changed, the top element receives class 'fp-changed';
362 * When current file can be set as main - top element receives class 'fp-cansetmain';
363 * When current file is folder/zip/file - top element receives respectfully class
364 * 'fp-folder'/'fp-zip'/'fp-file';
366 * @return string
368 private function fm_js_template_fileselectlayout() {
369 $strloading = get_string('loading', 'repository');
370 $icon_progress = $this->pix_icon('i/loading_small', $strloading).'';
371 $rv = '
372 <div class="filemanager fp-select">
373 <div class="fp-select-loading">
374 <img src="'.$this->pix_url('i/loading_small').'" />
375 </div>
376 <form>
377 <button class="{!}fp-file-download">'.get_string('download').'</button>
378 <button class="{!}fp-file-delete">'.get_string('delete').'</button>
379 <button class="{!}fp-file-setmain">'.get_string('setmainfile', 'repository').'</button>
380 <button class="{!}fp-file-zip">'.get_string('zip', 'editor').'</button>
381 <button class="{!}fp-file-unzip">'.get_string('unzip').'</button>
382 <div class="fp-hr"></div>
383 <table>
384 <tr class="{!}fp-saveas"><td class="mdl-right"><label>'.get_string('name', 'moodle').'</label>:</td>
385 <td class="mdl-left"><input type="text"/></td></tr>
386 <tr class="{!}fp-author"><td class="mdl-right"><label>'.get_string('author', 'repository').'</label>:</td>
387 <td class="mdl-left"><input type="text"/></td></tr>
388 <tr class="{!}fp-license"><td class="mdl-right"><label>'.get_string('chooselicense', 'repository').'</label>:</td>
389 <td class="mdl-left"><select></select></td></tr>
390 <tr class="{!}fp-path"><td class="mdl-right"><label>'.get_string('path', 'moodle').'</label>:</td>
391 <td class="mdl-left"><select></select></td></tr>
392 <tr class="{!}fp-original"><td class="mdl-right"><label>'.get_string('original', 'repository').'</label>:</td>
393 <td class="mdl-left"><span class="fp-originloading">'.$icon_progress.' '.$strloading.'</span><span class="fp-value"></span></td></tr>
394 <tr class="{!}fp-reflist"><td class="mdl-right"><label>'.get_string('referenceslist', 'repository').'</label>:</td>
395 <td class="mdl-left"><p class="{!}fp-refcount"></p><span class="fp-reflistloading">'.$icon_progress.' '.$strloading.'</span><ul class="fp-value"></ul></td></tr>
396 </table>
397 <div class="fp-select-buttons">
398 <button class="{!}fp-file-update">'.get_string('update', 'moodle').'</button>
399 <button class="{!}fp-file-cancel">'.get_string('cancel').'</button>
400 </div>
401 </form>
402 <div class="fp-info">
403 <div class="fp-hr"></div>
404 <p class="{!}fp-thumbnail"></p>
405 <div class="fp-fileinfo">
406 <div class="{!}fp-datemodified">'.get_string('lastmodified', 'moodle').': <span class="fp-value"></span></div>
407 <div class="{!}fp-datecreated">'.get_string('datecreated', 'repository').': <span class="fp-value"></span></div>
408 <div class="{!}fp-size">'.get_string('size', 'repository').': <span class="fp-value"></span></div>
409 <div class="{!}fp-dimensions">'.get_string('dimensions', 'repository').': <span class="fp-value"></span></div>
410 </div>
411 </div>
412 </div>';
413 return preg_replace('/\{\!\}/', '', $rv);
417 * FileManager JS template for popup confirm dialogue window.
419 * Must have one top element, CSS for this element must define width and height of the window;
421 * content of element with class 'fp-dlg-text' will be replaced with dialog text;
422 * elements with classes 'fp-dlg-butconfirm' and 'fp-dlg-butcancel' will
423 * hold onclick events;
425 * @return string
427 private function fm_js_template_confirmdialog() {
428 $rv = '
429 <div class="filemanager fp-dlg">
430 <div class="{!}fp-dlg-text"></div>
431 <button class="{!}fp-dlg-butconfirm">'.get_string('ok').'</button>
432 <button class="{!}fp-dlg-butcancel">'.get_string('cancel').'</button>
433 </div>';
434 return preg_replace('/\{\!\}/', '', $rv);
438 * Returns all FileManager JavaScript templates as an array.
440 * @return array
442 public function filemanager_js_templates() {
443 $class_methods = get_class_methods($this);
444 $templates = array();
445 foreach ($class_methods as $method_name) {
446 if (preg_match('/^fm_js_template_(.*)$/', $method_name, $matches))
447 $templates[$matches[1]] = $this->$method_name();
449 return $templates;
453 * Displays restrictions for the file manager
455 * @param form_filemanager $fm
456 * @return string
458 private function fm_print_restrictions($fm) {
459 $maxbytes = display_size($fm->options->maxbytes);
460 if (empty($fm->options->maxfiles) || $fm->options->maxfiles == -1) {
461 $maxsize = get_string('maxfilesize', 'moodle', $maxbytes);
462 } else {
463 $strparam = (object)array('size' => $maxbytes, 'attachments' => $fm->options->maxfiles);
464 $maxsize = get_string('maxsizeandattachments', 'moodle', $strparam);
466 // TODO MDL-32020 also should say about 'File types accepted'
467 return '<span>'. $maxsize. '</span>';
471 * Template for FilePicker with general layout (not QuickUpload).
473 * Must have one top element containing everything else (recommended <div class="file-picker">),
474 * CSS for this element must define width and height of the filepicker window. Or CSS must
475 * define min-width, max-width, min-height and max-height and in this case the filepicker
476 * window will be resizeable;
478 * Element with class 'fp-viewbar' will have the class 'enabled' or 'disabled' when view mode
479 * can be changed or not;
480 * Inside element with class 'fp-viewbar' there are expected elements with classes
481 * 'fp-vb-icons', 'fp-vb-tree' and 'fp-vb-details'. They will handle onclick events to switch
482 * between the view modes, the last clicked element will have the class 'checked';
484 * Element with class 'fp-repo' is a template for displaying one repository. Other repositories
485 * will be attached as siblings (classes first/last/even/odd will be added respectfully).
486 * The currently selected repostory will have class 'active'. Contents of element with class
487 * 'fp-repo-name' will be replaced with repository name, source of image with class
488 * 'fp-repo-icon' will be replaced with repository icon;
490 * Element with class 'fp-content' is obligatory and will hold the current contents;
492 * Element with class 'fp-paging' will contain page navigation (will be deprecated soon);
494 * Element with class 'fp-path-folder' is a template for one folder in path toolbar.
495 * It will hold mouse click event and will be assigned classes first/last/even/odd respectfully.
496 * Parent element will receive class 'empty' when there are no folders to be displayed;
497 * The content of subelement with class 'fp-path-folder-name' will be substituted with folder name;
499 * Element with class 'fp-toolbar' will have class 'empty' if all 'Back', 'Search', 'Refresh',
500 * 'Logout', 'Manage' and 'Help' are unavailable for this repo;
502 * Inside fp-toolbar there are expected elements with classes fp-tb-back, fp-tb-search,
503 * fp-tb-refresh, fp-tb-logout, fp-tb-manage and fp-tb-help. Each of them will have
504 * class 'enabled' or 'disabled' if particular repository has this functionality.
505 * Element with class 'fp-tb-search' must contain empty form inside, it's contents will
506 * be substituted with the search form returned by repository (in the most cases it
507 * is generated with template core_repository_renderer::repository_default_searchform);
508 * Other elements must have either <a> or <button> element inside, it will hold onclick
509 * event for corresponding action; labels for fp-tb-back and fp-tb-logout may be
510 * replaced with those specified by repository;
512 * @return string
514 private function fp_js_template_generallayout() {
515 $rv = '
516 <div class="file-picker fp-generallayout">
517 <div class="fp-repo-area">
518 <ul class="fp-list">
519 <li class="{!}fp-repo"><a href="#"><img class="{!}fp-repo-icon" width="16" height="16" />&nbsp;<span class="{!}fp-repo-name"></span></a></li>
520 </ul>
521 </div>
522 <div class="fp-repo-items">
523 <div class="fp-navbar">
524 <div>
525 <div class="{!}fp-toolbar">
526 <div class="{!}fp-tb-back"><a href="#">'.get_string('back', 'repository').'</a></div>
527 <div class="{!}fp-tb-search"><form></form></div>
528 <div class="{!}fp-tb-refresh"><a href="#"><img src="'.$this->pix_url('a/refresh').'" /></a></div>
529 <div class="{!}fp-tb-logout"><img src="'.$this->pix_url('a/logout').'" /><a href="#"></a></div>
530 <div class="{!}fp-tb-manage"><a href="#"><img src="'.$this->pix_url('a/setting').'" /> '.get_string('manageurl', 'repository').'</a></div>
531 <div class="{!}fp-tb-help"><a href="#"><img src="'.$this->pix_url('a/help').'" /> '.get_string('help').'</a></div>
532 <div class="{!}fp-tb-message"></div>
533 </div>
534 <div class="{!}fp-viewbar">
535 <a class="{!}fp-vb-icons" href="#"></a>
536 <a class="{!}fp-vb-details" href="#"></a>
537 <a class="{!}fp-vb-tree" href="#"></a>
538 </div>
539 <div class="fp-clear-left"></div>
540 </div>
541 <div class="fp-pathbar">
542 <span class="{!}fp-path-folder"><a class="{!}fp-path-folder-name" href="#"></a></span>
543 </div>
544 </div>
545 <div class="{!}fp-content"></div>
546 </div>
547 </div>';
548 return preg_replace('/\{\!\}/', '', $rv);
552 * FilePicker JS template for displaying one file in 'icon view' mode.
554 * the element with class 'fp-thumbnail' will be resized to the repository thumbnail size
555 * (both width and height, unless min-width and/or min-height is set in CSS) and the content of
556 * an element will be replaced with an appropriate img;
558 * the width of element with class 'fp-filename' will be set to the repository thumbnail width
559 * (unless min-width is set in css) and the content of an element will be replaced with filename
560 * supplied by repository;
562 * top element(s) will have class fp-folder if the element is a folder;
564 * List of files will have parent <div> element with class 'fp-iconview'
566 * @return string
568 private function fp_js_template_iconfilename() {
569 $rv = '
570 <a class="fp-file" href="#" >
571 <div style="position:relative;">
572 <div class="{!}fp-thumbnail"></div>
573 <div class="fp-reficons1"></div>
574 <div class="fp-reficons2"></div>
575 </div>
576 <div class="fp-filename-field">
577 <p class="{!}fp-filename"></p>
578 </div>
579 </a>';
580 return preg_replace('/\{\!\}/', '', $rv);
584 * FilePicker JS template for displaying file name in 'table view' and 'tree view' modes.
586 * content of the element with class 'fp-icon' will be replaced with an appropriate img;
588 * content of element with class 'fp-filename' will be replaced with filename supplied by
589 * repository;
591 * top element(s) will have class fp-folder if the element is a folder;
593 * Note that tree view and table view are the YUI widgets and therefore there are no
594 * other templates. The widgets will be wrapped in <div> with class fp-treeview or
595 * fp-tableview (respectfully).
597 * @return string
599 private function fp_js_template_listfilename() {
600 $rv = '
601 <span class="fp-filename-icon">
602 <a href="#">
603 <span class="{!}fp-icon"></span>
604 <span class="{!}fp-filename"></span>
605 </a>
606 </span>';
607 return preg_replace('/\{\!\}/', '', $rv);
611 * FilePicker JS template for displaying link/loading progress for fetching of the next page
613 * This text is added to .fp-content AFTER .fp-iconview/.fp-treeview/.fp-tableview
615 * Must have one parent element with class 'fp-nextpage'. It will be assigned additional
616 * class 'loading' during loading of the next page (it is recommended that in this case the link
617 * becomes unavailable). Also must contain one element <a> or <button> that will hold
618 * onclick event for displaying of the next page. The event will be triggered automatically
619 * when user scrolls to this link.
621 * @return string
623 private function fp_js_template_nextpage() {
624 $rv = '
625 <div class="{!}fp-nextpage">
626 <div class="fp-nextpage-link"><a href="#">'.get_string('more').'</a></div>
627 <div class="fp-nextpage-loading">
628 <img src="'.$this->pix_url('i/loading_small').'" />
629 </div>
630 </div>';
631 return preg_replace('/\{\!\}/', '', $rv);
635 * FilePicker JS template for window appearing to select a file.
637 * All content must be enclosed in one element, CSS for this class must define width and
638 * height of the window;
640 * Thumbnail image will be added as content to the element with class 'fp-thumbnail';
642 * Inside the window the elements with the following classnames must be present:
643 * 'fp-saveas', 'fp-linktype-2', 'fp-linktype-1', 'fp-linktype-4', 'fp-setauthor',
644 * 'fp-setlicense'. Inside each of them must have one input element (or select in case of
645 * fp-setlicense). They may also have labels.
646 * The elements will be assign with class 'uneditable' and input/select element will become
647 * disabled if they are not applicable for the particular file;
649 * There may be present elements with classes 'fp-datemodified', 'fp-datecreated', 'fp-size',
650 * 'fp-license', 'fp-author', 'fp-dimensions'. They will receive additional class 'fp-unknown'
651 * if information is unavailable. If there is information available, the content of embedded
652 * element with class 'fp-value' will be substituted with the value;
654 * Elements with classes 'fp-select-confirm' and 'fp-select-cancel' will hold corresponding
655 * onclick events;
657 * When confirm button is pressed and file is being selected, the top element receives
658 * additional class 'loading'. It is removed when response from server is received.
660 * @return string
662 private function fp_js_template_selectlayout() {
663 $rv = '
664 <div class="file-picker fp-select">
665 <div class="fp-select-loading">
666 <img src="'.$this->pix_url('i/loading_small').'" />
667 </div>
668 <form>
669 <table>
670 <tr class="{!}fp-linktype-2">
671 <td class="mdl-right"></td>
672 <td class="mdl-left"><input type="radio"/><label>&nbsp;'.get_string('makefileinternal', 'repository').'</label></td></tr>
673 <tr class="{!}fp-linktype-1">
674 <td class="mdl-right"></td>
675 <td class="mdl-left"><input type="radio"/><label>&nbsp;'.get_string('makefilelink', 'repository').'</label></td></tr>
676 <tr class="{!}fp-linktype-4">
677 <td class="mdl-right"></td>
678 <td class="mdl-left"><input type="radio"/><label>&nbsp;'.get_string('makefilereference', 'repository').'</label></td></tr>
679 <tr class="{!}fp-saveas">
680 <td class="mdl-right"><label>'.get_string('saveas', 'repository').'</label>:</td>
681 <td class="mdl-left"><input type="text"/></td></tr>
682 <tr class="{!}fp-setauthor">
683 <td class="mdl-right"><label>'.get_string('author', 'repository').'</label>:</td>
684 <td class="mdl-left"><input type="text" /></td></tr>
685 <tr class="{!}fp-setlicense">
686 <td class="mdl-right"><label>'.get_string('chooselicense', 'repository').'</label>:</td>
687 <td class="mdl-left"><select></select></td></tr>
688 </table>
689 <div class="fp-select-buttons">
690 <button class="{!}fp-select-confirm">'.get_string('getfile', 'repository').'</button>
691 <button class="{!}fp-select-cancel">'.get_string('cancel').'</button>
692 </div>
693 </form>
694 <div class="fp-info">
695 <div class="fp-hr"></div>
696 <p class="{!}fp-thumbnail"></p>
697 <div class="fp-fileinfo">
698 <div class="{!}fp-datemodified">'.get_string('lastmodified', 'moodle').': <span class="fp-value"></span></div>
699 <div class="{!}fp-datecreated">'.get_string('datecreated', 'repository').': <span class="fp-value"></span></div>
700 <div class="{!}fp-size">'.get_string('size', 'repository').': <span class="fp-value"></span></div>
701 <div class="{!}fp-license">'.get_string('license', 'moodle').': <span class="fp-value"></span></div>
702 <div class="{!}fp-author">'.get_string('author', 'repository').': <span class="fp-value"></span></div>
703 <div class="{!}fp-dimensions">'.get_string('dimensions', 'repository').': <span class="fp-value"></span></div>
704 </div>
705 <div>
706 </div>';
707 return preg_replace('/\{\!\}/', '', $rv);
711 * FilePicker JS template for 'Upload file' repository
713 * Content to display when user chooses 'Upload file' repository (will be nested inside
714 * element with class 'fp-content').
716 * Must contain form (enctype="multipart/form-data" method="POST")
718 * The elements with the following classnames must be present:
719 * 'fp-file', 'fp-saveas', 'fp-setauthor', 'fp-setlicense'. Inside each of them must have
720 * one input element (or select in case of fp-setlicense). They may also have labels.
722 * Element with class 'fp-upload-btn' will hold onclick event for uploading the file;
724 * Please note that some fields may be hidden using CSS if this is part of quickupload form
726 * @return string
728 private function fp_js_template_uploadform() {
729 $rv = '
730 <div class="fp-upload-form mdl-align">
731 <div class="fp-content-center">
732 <form enctype="multipart/form-data" method="POST">
733 <table >
734 <tr class="{!}fp-file">
735 <td class="mdl-right"><label>'.get_string('attachment', 'repository').'</label>:</td>
736 <td class="mdl-left"><input type="file"/></td></tr>
737 <tr class="{!}fp-saveas">
738 <td class="mdl-right"><label>'.get_string('saveas', 'repository').'</label>:</td>
739 <td class="mdl-left"><input type="text"/></td></tr>
740 <tr class="{!}fp-setauthor">
741 <td class="mdl-right"><label>'.get_string('author', 'repository').'</label>:</td>
742 <td class="mdl-left"><input type="text"/></td></tr>
743 <tr class="{!}fp-setlicense">
744 <td class="mdl-right"><label>'.get_string('chooselicense', 'repository').'</label>:</td>
745 <td class="mdl-left"><select></select></td></tr>
746 </table>
747 </form>
748 <div><button class="{!}fp-upload-btn">'.get_string('upload', 'repository').'</button></div>
749 </div>
750 </div> ';
751 return preg_replace('/\{\!\}/', '', $rv);
755 * FilePicker JS template to display during loading process (inside element with class 'fp-content').
757 * @return string
759 private function fp_js_template_loading() {
760 return '
761 <div class="fp-content-loading">
762 <div class="fp-content-center">
763 <img src="'.$this->pix_url('i/loading_small').'" />
764 </div>
765 </div>';
769 * FilePicker JS template for error (inside element with class 'fp-content').
771 * must have element with class 'fp-error', its content will be replaced with error text
772 * and the error code will be assigned as additional class to this element
773 * used errors: invalidjson, nofilesavailable, norepositoriesavailable
775 * @return string
777 private function fp_js_template_error() {
778 $rv = '
779 <div class="fp-content-error" ><div class="{!}fp-error"></div></div>';
780 return preg_replace('/\{\!\}/', '', $rv);
784 * FilePicker JS template for error/info message displayed as a separate popup window.
786 * Must be wrapped in one element, CSS for this element must define
787 * width and height of the window. It will be assigned with an additional class 'fp-msg-error'
788 * or 'fp-msg-info' depending on message type;
790 * content of element with class 'fp-msg-text' will be replaced with error/info text;
792 * element with class 'fp-msg-butok' will hold onclick event
794 * @return string
796 private function fp_js_template_message() {
797 $rv = '
798 <div class="file-picker fp-msg">
799 <p class="{!}fp-msg-text"></p>
800 <button class="{!}fp-msg-butok">'.get_string('ok').'</button>
801 </div>';
802 return preg_replace('/\{\!\}/', '', $rv);
806 * FilePicker JS template for popup dialogue window asking for action when file with the same name already exists.
808 * Must have one top element, CSS for this element must define width and height of the window;
810 * content of element with class 'fp-dlg-text' will be replaced with dialog text;
811 * elements with classes 'fp-dlg-butoverwrite', 'fp-dlg-butrename',
812 * 'fp-dlg-butoverwriteall', 'fp-dlg-butrenameall' and 'fp-dlg-butcancel' will
813 * hold onclick events;
815 * content of element with class 'fp-dlg-butrename' will be substituted with appropriate string
816 * (Note that it may have long text)
818 * @return string
820 private function fp_js_template_processexistingfile() {
821 $rv = '
822 <div class="file-picker fp-dlg">
823 <p class="{!}fp-dlg-text"></p>
824 <div class="fp-dlg-buttons">
825 <button class="{!}fp-dlg-butoverwrite">'.get_string('overwrite', 'repository').'</button>
826 <button class="{!}fp-dlg-butrename"></button>
827 <button class="{!}fp-dlg-butcancel">'.get_string('cancel').'</button>
828 </div>
829 </div>';
830 return preg_replace('/\{\!\}/', '', $rv);
834 * FilePicker JS template for popup dialogue window asking for action when file with the same name already exists (multiple-file version).
836 * Must have one top element, CSS for this element must define width and height of the window;
838 * content of element with class 'fp-dlg-text' will be replaced with dialog text;
839 * elements with classes 'fp-dlg-butoverwrite', 'fp-dlg-butrename' and 'fp-dlg-butcancel' will
840 * hold onclick events;
842 * content of element with class 'fp-dlg-butrename' will be substituted with appropriate string
843 * (Note that it may have long text)
845 * @return string
847 private function fp_js_template_processexistingfilemultiple() {
848 $rv = '
849 <div class="file-picker fp-dlg">
850 <p class="{!}fp-dlg-text"></p>
851 <a class="{!}fp-dlg-butoverwrite fp-panel-button" href="#">'.get_string('overwrite', 'repository').'</a>
852 <a class="{!}fp-dlg-butcancel fp-panel-button" href="#">'.get_string('cancel').'</a>
853 <a class="{!}fp-dlg-butrename fp-panel-button" href="#"></a>
854 <br/>
855 <a class="{!}fp-dlg-butoverwriteall fp-panel-button" href="#">'.get_string('overwriteall', 'repository').'</a>
856 <a class="{!}fp-dlg-butrenameall fp-panel-button" href="#">'.get_string('renameall', 'repository').'</a>
857 </div>';
858 return preg_replace('/\{\!\}/', '', $rv);
862 * FilePicker JS template for repository login form including templates for each element type
864 * Must contain one <form> element with templates for different input types inside:
865 * Elements with classes 'fp-login-popup', 'fp-login-textarea', 'fp-login-select' and
866 * 'fp-login-input' are templates for displaying respective login form elements. Inside
867 * there must be exactly one element with type <button>, <textarea>, <select> or <input>
868 * (i.e. fp-login-popup should have <button>, fp-login-textarea should have <textarea>, etc.);
869 * They may also contain the <label> element and it's content will be substituted with
870 * label;
872 * You can also define elements with classes 'fp-login-checkbox', 'fp-login-text'
873 * but if they are not found, 'fp-login-input' will be used;
875 * Element with class 'fp-login-radiogroup' will be used for group of radio inputs. Inside
876 * it should hava a template for one radio input (with class 'fp-login-radio');
878 * Element with class 'fp-login-submit' will hold on click mouse event (form submission). It
879 * will be removed if at least one popup element is present;
881 * @return string
883 private function fp_js_template_loginform() {
884 $rv = '
885 <div class="fp-login-form">
886 <div class="fp-content-center">
887 <form>
888 <table >
889 <tr class="{!}fp-login-popup">
890 <td colspan="2">
891 <label>'.get_string('popup', 'repository').'</label>
892 <p class="fp-popup"><button class="{!}fp-login-popup-but">'.get_string('login', 'repository').'</button></p></td></tr>
893 <tr class="{!}fp-login-textarea">
894 <td colspan="2"><p><textarea></textarea></p></td></tr>
895 <tr class="{!}fp-login-select">
896 <td align="right"><label></label></td>
897 <td align="left"><select></select></td></tr>
898 <tr class="{!}fp-login-input">
899 <td class="label"><label></label></td>
900 <td class="input"><input/></td></tr>
901 <tr class="{!}fp-login-radiogroup">
902 <td align="right" width="30%" valign="top"><label></label></td>
903 <td align="left" valign="top"><p class="{!}fp-login-radio"><input /> <label></label></p></td></tr>
904 </table>
905 <p><button class="{!}fp-login-submit">'.get_string('submit', 'repository').'</button></p>
906 </form>
907 </div>
908 </div>';
909 return preg_replace('/\{\!\}/', '', $rv);
913 * Returns all FilePicker JavaScript templates as an array.
915 * @return array
917 public function filepicker_js_templates() {
918 $class_methods = get_class_methods($this);
919 $templates = array();
920 foreach ($class_methods as $method_name) {
921 if (preg_match('/^fp_js_template_(.*)$/', $method_name, $matches))
922 $templates[$matches[1]] = $this->$method_name();
924 return $templates;
928 * Returns HTML for default repository searchform to be passed to Filepicker
930 * This will be used as contents for search form defined in generallayout template
931 * (form with id {TOOLSEARCHID}).
932 * Default contents is one text input field with name="s"
934 public function repository_default_searchform() {
935 $str = '<div class="fp-def-search"><input name="s" value='.get_string('search', 'repository').' /></div>';
936 return $str;
941 * Data structure representing a general moodle file tree viewer
943 * @copyright 2010 Dongsheng Cai
944 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
945 * @since Moodle 2.0
947 class files_tree_viewer implements renderable {
948 public $tree;
949 public $path;
950 public $context;
953 * Constructor of moodle_file_tree_viewer class
954 * @param file_info $file_info
955 * @param array $options
957 public function __construct(file_info $file_info, array $options = null) {
958 global $CFG;
960 //note: this MUST NOT use get_file_storage() !!!!!!!!!!!!!!!!!!!!!!!!!!!!
961 $this->options = (array)$options;
962 $this->context = $options['context'];
964 $this->tree = array();
965 $children = $file_info->get_children();
966 $current_file_params = $file_info->get_params();
967 $parent_info = $file_info->get_parent();
968 $level = $parent_info;
969 $this->path = array();
970 while ($level) {
971 $params = $level->get_params();
972 $context = get_context_instance_by_id($params['contextid']);
973 // $this->context is current context
974 if ($context->id != $this->context->id or empty($params['filearea'])) {
975 break;
977 // unset unused parameters
978 unset($params['component']);
979 unset($params['filearea']);
980 unset($params['filename']);
981 unset($params['itemid']);
982 $url = new moodle_url('/files/index.php', $params);
983 $this->path[] = html_writer::link($url, $level->get_visible_name());
984 $level = $level->get_parent();
986 $this->path = array_reverse($this->path);
987 if ($current_file_params['filepath'] != '/') {
988 $this->path[] = $file_info->get_visible_name();
991 foreach ($children as $child) {
992 $filedate = $child->get_timemodified();
993 $filesize = $child->get_filesize();
994 $mimetype = $child->get_mimetype();
995 $params = $child->get_params();
996 unset($params['component']);
997 unset($params['filearea']);
998 unset($params['filename']);
999 unset($params['itemid']);
1000 $fileitem = array(
1001 'params' => $params,
1002 'filename' => $child->get_visible_name(),
1003 'mimetype' => $child->get_mimetype(),
1004 'filedate' => $filedate ? $filedate : '',
1005 'filesize' => $filesize ? $filesize : ''
1007 $url = new moodle_url('/files/index.php', $params);
1008 if ($child->is_directory()) {
1009 $fileitem['isdir'] = true;
1010 $fileitem['url'] = $url->out(false);
1011 } else {
1012 $fileitem['url'] = $child->get_url();
1014 $this->tree[] = $fileitem;