MDL-35145 add extra delete_user() parameter validation
[moodle.git] / files / renderer.php
blobcfa14e08b899c1a3ae93ff892c6731dee0a5f390
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 $strdndenabled = get_string('dndenabled_insentence', 'moodle').$OUTPUT->help_icon('dndenabled');
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="dndupload-message"> - '.$strdndenabled.' </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 <span class="dndupload-message">'.$strdndenabledinbox.'<br/><span class="dndupload-arrow"></span></span>
224 </div>
225 <div class="dndupload-target">'.$strdroptoupload.'<br/><span class="dndupload-arrow"></span></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">'.get_string('newfoldername','repository').'<br/><input type="text" /></div>
308 <button class="{!}fp-dlg-butcreate">'.get_string('makeafolder').'</button>
309 <button class="{!}fp-dlg-butcancel">'.get_string('cancel').'</button>
310 </div>';
311 return preg_replace('/\{\!\}/', '', $rv);
315 * FileManager JS template for error/info message displayed as a separate popup window.
317 * @see fp_js_template_message()
318 * @return string
320 private function fm_js_template_message() {
321 return $this->fp_js_template_message();
325 * FileManager JS template for window with file information/actions.
327 * All content must be enclosed in one element, CSS for this class must define width and
328 * height of the window;
330 * Thumbnail image will be added as content to the element with class 'fp-thumbnail';
332 * Inside the window the elements with the following classnames must be present:
333 * 'fp-saveas', 'fp-author', 'fp-license', 'fp-path'. Inside each of them must be
334 * one input element (or select in case of fp-license and fp-path). They may also have labels.
335 * The elements will be assign with class 'uneditable' and input/select element will become
336 * disabled if they are not applicable for the particular file;
338 * There may be present elements with classes 'fp-original', 'fp-datemodified', 'fp-datecreated',
339 * 'fp-size', 'fp-dimensions', 'fp-reflist'. They will receive additional class 'fp-unknown' if
340 * information is unavailable. If there is information available, the content of embedded
341 * element with class 'fp-value' will be substituted with the value;
343 * The value of Original ('fp-original') is loaded in separate request. When it is applicable
344 * but not yet loaded the 'fp-original' element receives additional class 'fp-loading';
346 * The value of 'Aliases/Shortcuts' ('fp-reflist') is also loaded in separate request. When it
347 * is applicable but not yet loaded the 'fp-original' element receives additional class
348 * 'fp-loading'. The string explaining that XX references exist will replace content of element
349 * 'fp-refcount'. Inside '.fp-reflist .fp-value' each reference will be enclosed in <li>;
351 * Elements with classes 'fp-file-update', 'fp-file-download', 'fp-file-delete', 'fp-file-zip',
352 * 'fp-file-unzip', 'fp-file-setmain' and 'fp-file-cancel' will hold corresponding onclick
353 * events (there may be several elements with class 'fp-file-cancel');
355 * When confirm button is pressed and file is being selected, the top element receives
356 * additional class 'loading'. It is removed when response from server is received.
358 * When any of the input fields is changed, the top element receives class 'fp-changed';
359 * When current file can be set as main - top element receives class 'fp-cansetmain';
360 * When current file is folder/zip/file - top element receives respectfully class
361 * 'fp-folder'/'fp-zip'/'fp-file';
363 * @return string
365 private function fm_js_template_fileselectlayout() {
366 $strloading = get_string('loading', 'repository');
367 $icon_progress = $this->pix_icon('i/loading_small', $strloading).'';
368 $rv = '
369 <div class="filemanager fp-select">
370 <div class="fp-select-loading">
371 <img src="'.$this->pix_url('i/loading_small').'" />
372 </div>
373 <form>
374 <button class="{!}fp-file-download">'.get_string('download').'</button>
375 <button class="{!}fp-file-delete">'.get_string('delete').'</button>
376 <button class="{!}fp-file-setmain">'.get_string('setmainfile', 'repository').'</button>
377 <button class="{!}fp-file-zip">'.get_string('zip', 'editor').'</button>
378 <button class="{!}fp-file-unzip">'.get_string('unzip').'</button>
379 <div class="fp-hr"></div>
380 <table>
381 <tr class="{!}fp-saveas"><td class="mdl-right"><label>'.get_string('name', 'moodle').'</label>:</td>
382 <td class="mdl-left"><input type="text"/></td></tr>
383 <tr class="{!}fp-author"><td class="mdl-right"><label>'.get_string('author', 'repository').'</label>:</td>
384 <td class="mdl-left"><input type="text"/></td></tr>
385 <tr class="{!}fp-license"><td class="mdl-right"><label>'.get_string('chooselicense', 'repository').'</label>:</td>
386 <td class="mdl-left"><select></select></td></tr>
387 <tr class="{!}fp-path"><td class="mdl-right"><label>'.get_string('path', 'moodle').'</label>:</td>
388 <td class="mdl-left"><select></select></td></tr>
389 <tr class="{!}fp-original"><td class="mdl-right"><label>'.get_string('original', 'repository').'</label>:</td>
390 <td class="mdl-left"><span class="fp-originloading">'.$icon_progress.' '.$strloading.'</span><span class="fp-value"></span></td></tr>
391 <tr class="{!}fp-reflist"><td class="mdl-right"><label>'.get_string('referenceslist', 'repository').'</label>:</td>
392 <td class="mdl-left"><p class="{!}fp-refcount"></p><span class="fp-reflistloading">'.$icon_progress.' '.$strloading.'</span><ul class="fp-value"></ul></td></tr>
393 </table>
394 <div class="fp-select-buttons">
395 <button class="{!}fp-file-update">'.get_string('update', 'moodle').'</button>
396 <button class="{!}fp-file-cancel">'.get_string('cancel').'</button>
397 </div>
398 </form>
399 <div class="fp-info">
400 <div class="fp-hr"></div>
401 <p class="{!}fp-thumbnail"></p>
402 <div class="fp-fileinfo">
403 <div class="{!}fp-datemodified">'.get_string('lastmodified', 'moodle').': <span class="fp-value"></span></div>
404 <div class="{!}fp-datecreated">'.get_string('datecreated', 'repository').': <span class="fp-value"></span></div>
405 <div class="{!}fp-size">'.get_string('size', 'repository').': <span class="fp-value"></span></div>
406 <div class="{!}fp-dimensions">'.get_string('dimensions', 'repository').': <span class="fp-value"></span></div>
407 </div>
408 </div>
409 </div>';
410 return preg_replace('/\{\!\}/', '', $rv);
414 * FileManager JS template for popup confirm dialogue window.
416 * Must have one top element, CSS for this element must define width and height of the window;
418 * content of element with class 'fp-dlg-text' will be replaced with dialog text;
419 * elements with classes 'fp-dlg-butconfirm' and 'fp-dlg-butcancel' will
420 * hold onclick events;
422 * @return string
424 private function fm_js_template_confirmdialog() {
425 $rv = '
426 <div class="filemanager fp-dlg">
427 <div class="{!}fp-dlg-text"></div>
428 <button class="{!}fp-dlg-butconfirm">'.get_string('ok').'</button>
429 <button class="{!}fp-dlg-butcancel">'.get_string('cancel').'</button>
430 </div>';
431 return preg_replace('/\{\!\}/', '', $rv);
435 * Returns all FileManager JavaScript templates as an array.
437 * @return array
439 public function filemanager_js_templates() {
440 $class_methods = get_class_methods($this);
441 $templates = array();
442 foreach ($class_methods as $method_name) {
443 if (preg_match('/^fm_js_template_(.*)$/', $method_name, $matches))
444 $templates[$matches[1]] = $this->$method_name();
446 return $templates;
450 * Displays restrictions for the file manager
452 * @param form_filemanager $fm
453 * @return string
455 private function fm_print_restrictions($fm) {
456 $maxbytes = display_size($fm->options->maxbytes);
457 if (empty($fm->options->maxfiles) || $fm->options->maxfiles == -1) {
458 $maxsize = get_string('maxfilesize', 'moodle', $maxbytes);
459 } else {
460 $strparam = (object)array('size' => $maxbytes, 'attachments' => $fm->options->maxfiles);
461 $maxsize = get_string('maxsizeandattachments', 'moodle', $strparam);
463 // TODO MDL-32020 also should say about 'File types accepted'
464 return '<span>'. $maxsize. '</span>';
468 * Template for FilePicker with general layout (not QuickUpload).
470 * Must have one top element containing everything else (recommended <div class="file-picker">),
471 * CSS for this element must define width and height of the filepicker window. Or CSS must
472 * define min-width, max-width, min-height and max-height and in this case the filepicker
473 * window will be resizeable;
475 * Element with class 'fp-viewbar' will have the class 'enabled' or 'disabled' when view mode
476 * can be changed or not;
477 * Inside element with class 'fp-viewbar' there are expected elements with classes
478 * 'fp-vb-icons', 'fp-vb-tree' and 'fp-vb-details'. They will handle onclick events to switch
479 * between the view modes, the last clicked element will have the class 'checked';
481 * Element with class 'fp-repo' is a template for displaying one repository. Other repositories
482 * will be attached as siblings (classes first/last/even/odd will be added respectfully).
483 * The currently selected repostory will have class 'active'. Contents of element with class
484 * 'fp-repo-name' will be replaced with repository name, source of image with class
485 * 'fp-repo-icon' will be replaced with repository icon;
487 * Element with class 'fp-content' is obligatory and will hold the current contents;
489 * Element with class 'fp-paging' will contain page navigation (will be deprecated soon);
491 * Element with class 'fp-path-folder' is a template for one folder in path toolbar.
492 * It will hold mouse click event and will be assigned classes first/last/even/odd respectfully.
493 * Parent element will receive class 'empty' when there are no folders to be displayed;
494 * The content of subelement with class 'fp-path-folder-name' will be substituted with folder name;
496 * Element with class 'fp-toolbar' will have class 'empty' if all 'Back', 'Search', 'Refresh',
497 * 'Logout', 'Manage' and 'Help' are unavailable for this repo;
499 * Inside fp-toolbar there are expected elements with classes fp-tb-back, fp-tb-search,
500 * fp-tb-refresh, fp-tb-logout, fp-tb-manage and fp-tb-help. Each of them will have
501 * class 'enabled' or 'disabled' if particular repository has this functionality.
502 * Element with class 'fp-tb-search' must contain empty form inside, it's contents will
503 * be substituted with the search form returned by repository (in the most cases it
504 * is generated with template core_repository_renderer::repository_default_searchform);
505 * Other elements must have either <a> or <button> element inside, it will hold onclick
506 * event for corresponding action; labels for fp-tb-back and fp-tb-logout may be
507 * replaced with those specified by repository;
509 * @return string
511 private function fp_js_template_generallayout() {
512 $rv = '
513 <div class="file-picker fp-generallayout">
514 <div class="fp-repo-area">
515 <ul class="fp-list">
516 <li class="{!}fp-repo"><a href="#"><img class="{!}fp-repo-icon" width="16" height="16" />&nbsp;<span class="{!}fp-repo-name"></span></a></li>
517 </ul>
518 </div>
519 <div class="fp-repo-items">
520 <div class="fp-navbar">
521 <div>
522 <div class="{!}fp-toolbar">
523 <div class="{!}fp-tb-back"><a href="#">'.get_string('back', 'repository').'</a></div>
524 <div class="{!}fp-tb-search"><form></form></div>
525 <div class="{!}fp-tb-refresh"><a href="#"><img src="'.$this->pix_url('a/refresh').'" /></a></div>
526 <div class="{!}fp-tb-logout"><img src="'.$this->pix_url('a/logout').'" /><a href="#"></a></div>
527 <div class="{!}fp-tb-manage"><a href="#"><img src="'.$this->pix_url('a/setting').'" /> '.get_string('manageurl', 'repository').'</a></div>
528 <div class="{!}fp-tb-help"><a href="#"><img src="'.$this->pix_url('a/help').'" /> '.get_string('help').'</a></div>
529 </div>
530 <div class="{!}fp-viewbar">
531 <a class="{!}fp-vb-icons" href="#"></a>
532 <a class="{!}fp-vb-details" href="#"></a>
533 <a class="{!}fp-vb-tree" href="#"></a>
534 </div>
535 <div class="fp-clear-left"></div>
536 </div>
537 <div class="fp-pathbar">
538 <span class="{!}fp-path-folder"><a class="{!}fp-path-folder-name" href="#"></a></span>
539 </div>
540 </div>
541 <div class="{!}fp-content"></div>
542 </div>
543 </div>';
544 return preg_replace('/\{\!\}/', '', $rv);
548 * FilePicker JS template for displaying one file in 'icon view' mode.
550 * the element with class 'fp-thumbnail' will be resized to the repository thumbnail size
551 * (both width and height, unless min-width and/or min-height is set in CSS) and the content of
552 * an element will be replaced with an appropriate img;
554 * the width of element with class 'fp-filename' will be set to the repository thumbnail width
555 * (unless min-width is set in css) and the content of an element will be replaced with filename
556 * supplied by repository;
558 * top element(s) will have class fp-folder if the element is a folder;
560 * List of files will have parent <div> element with class 'fp-iconview'
562 * @return string
564 private function fp_js_template_iconfilename() {
565 $rv = '
566 <a class="fp-file" href="#" >
567 <div style="position:relative;">
568 <div class="{!}fp-thumbnail"></div>
569 <div class="fp-reficons1"></div>
570 <div class="fp-reficons2"></div>
571 </div>
572 <div class="fp-filename-field">
573 <p class="{!}fp-filename"></p>
574 </div>
575 </a>';
576 return preg_replace('/\{\!\}/', '', $rv);
580 * FilePicker JS template for displaying file name in 'table view' and 'tree view' modes.
582 * content of the element with class 'fp-icon' will be replaced with an appropriate img;
584 * content of element with class 'fp-filename' will be replaced with filename supplied by
585 * repository;
587 * top element(s) will have class fp-folder if the element is a folder;
589 * Note that tree view and table view are the YUI widgets and therefore there are no
590 * other templates. The widgets will be wrapped in <div> with class fp-treeview or
591 * fp-tableview (respectfully).
593 * @return string
595 private function fp_js_template_listfilename() {
596 $rv = '
597 <span class="fp-filename-icon">
598 <a href="#">
599 <span class="{!}fp-icon"></span>
600 <span class="{!}fp-filename"></span>
601 </a>
602 </span>';
603 return preg_replace('/\{\!\}/', '', $rv);
607 * FilePicker JS template for displaying link/loading progress for fetching of the next page
609 * This text is added to .fp-content AFTER .fp-iconview/.fp-treeview/.fp-tableview
611 * Must have one parent element with class 'fp-nextpage'. It will be assigned additional
612 * class 'loading' during loading of the next page (it is recommended that in this case the link
613 * becomes unavailable). Also must contain one element <a> or <button> that will hold
614 * onclick event for displaying of the next page. The event will be triggered automatically
615 * when user scrolls to this link.
617 * @return string
619 private function fp_js_template_nextpage() {
620 $rv = '
621 <div class="{!}fp-nextpage">
622 <div class="fp-nextpage-link"><a href="#">'.get_string('more').'</a></div>
623 <div class="fp-nextpage-loading">
624 <img src="'.$this->pix_url('i/loading_small').'" />
625 </div>
626 </div>';
627 return preg_replace('/\{\!\}/', '', $rv);
631 * FilePicker JS template for window appearing to select a file.
633 * All content must be enclosed in one element, CSS for this class must define width and
634 * height of the window;
636 * Thumbnail image will be added as content to the element with class 'fp-thumbnail';
638 * Inside the window the elements with the following classnames must be present:
639 * 'fp-saveas', 'fp-linktype-2', 'fp-linktype-1', 'fp-linktype-4', 'fp-setauthor',
640 * 'fp-setlicense'. Inside each of them must have one input element (or select in case of
641 * fp-setlicense). They may also have labels.
642 * The elements will be assign with class 'uneditable' and input/select element will become
643 * disabled if they are not applicable for the particular file;
645 * There may be present elements with classes 'fp-datemodified', 'fp-datecreated', 'fp-size',
646 * 'fp-license', 'fp-author', 'fp-dimensions'. They will receive additional class 'fp-unknown'
647 * if information is unavailable. If there is information available, the content of embedded
648 * element with class 'fp-value' will be substituted with the value;
650 * Elements with classes 'fp-select-confirm' and 'fp-select-cancel' will hold corresponding
651 * onclick events;
653 * When confirm button is pressed and file is being selected, the top element receives
654 * additional class 'loading'. It is removed when response from server is received.
656 * @return string
658 private function fp_js_template_selectlayout() {
659 $rv = '
660 <div class="file-picker fp-select">
661 <div class="fp-select-loading">
662 <img src="'.$this->pix_url('i/loading_small').'" />
663 </div>
664 <form>
665 <table>
666 <tr class="{!}fp-linktype-2">
667 <td class="mdl-right"></td>
668 <td class="mdl-left"><input type="radio"/><label>&nbsp;'.get_string('makefileinternal', 'repository').'</label></td></tr>
669 <tr class="{!}fp-linktype-1">
670 <td class="mdl-right"></td>
671 <td class="mdl-left"><input type="radio"/><label>&nbsp;'.get_string('makefilelink', 'repository').'</label></td></tr>
672 <tr class="{!}fp-linktype-4">
673 <td class="mdl-right"></td>
674 <td class="mdl-left"><input type="radio"/><label>&nbsp;'.get_string('makefilereference', 'repository').'</label></td></tr>
675 <tr class="{!}fp-saveas">
676 <td class="mdl-right"><label>'.get_string('saveas', 'repository').'</label>:</td>
677 <td class="mdl-left"><input type="text"/></td></tr>
678 <tr class="{!}fp-setauthor">
679 <td class="mdl-right"><label>'.get_string('author', 'repository').'</label>:</td>
680 <td class="mdl-left"><input type="text" /></td></tr>
681 <tr class="{!}fp-setlicense">
682 <td class="mdl-right"><label>'.get_string('chooselicense', 'repository').'</label>:</td>
683 <td class="mdl-left"><select></select></td></tr>
684 </table>
685 <div class="fp-select-buttons">
686 <button class="{!}fp-select-confirm">'.get_string('getfile', 'repository').'</button>
687 <button class="{!}fp-select-cancel">'.get_string('cancel').'</button>
688 </div>
689 </form>
690 <div class="fp-info">
691 <div class="fp-hr"></div>
692 <p class="{!}fp-thumbnail"></p>
693 <div class="fp-fileinfo">
694 <div class="{!}fp-datemodified">'.get_string('lastmodified', 'moodle').': <span class="fp-value"></span></div>
695 <div class="{!}fp-datecreated">'.get_string('datecreated', 'repository').': <span class="fp-value"></span></div>
696 <div class="{!}fp-size">'.get_string('size', 'repository').': <span class="fp-value"></span></div>
697 <div class="{!}fp-license">'.get_string('license', 'moodle').': <span class="fp-value"></span></div>
698 <div class="{!}fp-author">'.get_string('author', 'repository').': <span class="fp-value"></span></div>
699 <div class="{!}fp-dimensions">'.get_string('dimensions', 'repository').': <span class="fp-value"></span></div>
700 </div>
701 <div>
702 </div>';
703 return preg_replace('/\{\!\}/', '', $rv);
707 * FilePicker JS template for 'Upload file' repository
709 * Content to display when user chooses 'Upload file' repository (will be nested inside
710 * element with class 'fp-content').
712 * Must contain form (enctype="multipart/form-data" method="POST")
714 * The elements with the following classnames must be present:
715 * 'fp-file', 'fp-saveas', 'fp-setauthor', 'fp-setlicense'. Inside each of them must have
716 * one input element (or select in case of fp-setlicense). They may also have labels.
718 * Element with class 'fp-upload-btn' will hold onclick event for uploading the file;
720 * Please note that some fields may be hidden using CSS if this is part of quickupload form
722 * @return string
724 private function fp_js_template_uploadform() {
725 $rv = '
726 <div class="fp-upload-form mdl-align">
727 <div class="fp-content-center">
728 <form enctype="multipart/form-data" method="POST">
729 <table >
730 <tr class="{!}fp-file">
731 <td class="mdl-right"><label>'.get_string('attachment', 'repository').'</label>:</td>
732 <td class="mdl-left"><input type="file"/></td></tr>
733 <tr class="{!}fp-saveas">
734 <td class="mdl-right"><label>'.get_string('saveas', 'repository').'</label>:</td>
735 <td class="mdl-left"><input type="text"/></td></tr>
736 <tr class="{!}fp-setauthor">
737 <td class="mdl-right"><label>'.get_string('author', 'repository').'</label>:</td>
738 <td class="mdl-left"><input type="text"/></td></tr>
739 <tr class="{!}fp-setlicense">
740 <td class="mdl-right"><label>'.get_string('chooselicense', 'repository').'</label>:</td>
741 <td class="mdl-left"><select></select></td></tr>
742 </table>
743 </form>
744 <div><button class="{!}fp-upload-btn">'.get_string('upload', 'repository').'</button></div>
745 </div>
746 </div> ';
747 return preg_replace('/\{\!\}/', '', $rv);
751 * FilePicker JS template to display during loading process (inside element with class 'fp-content').
753 * @return string
755 private function fp_js_template_loading() {
756 return '
757 <div class="fp-content-loading">
758 <div class="fp-content-center">
759 <img src="'.$this->pix_url('i/loading_small').'" />
760 </div>
761 </div>';
765 * FilePicker JS template for error (inside element with class 'fp-content').
767 * must have element with class 'fp-error', its content will be replaced with error text
768 * and the error code will be assigned as additional class to this element
769 * used errors: invalidjson, nofilesavailable, norepositoriesavailable
771 * @return string
773 private function fp_js_template_error() {
774 $rv = '
775 <div class="fp-content-error" ><div class="{!}fp-error"></div></div>';
776 return preg_replace('/\{\!\}/', '', $rv);
780 * FilePicker JS template for error/info message displayed as a separate popup window.
782 * Must be wrapped in one element, CSS for this element must define
783 * width and height of the window. It will be assigned with an additional class 'fp-msg-error'
784 * or 'fp-msg-info' depending on message type;
786 * content of element with class 'fp-msg-text' will be replaced with error/info text;
788 * element with class 'fp-msg-butok' will hold onclick event
790 * @return string
792 private function fp_js_template_message() {
793 $rv = '
794 <div class="file-picker fp-msg">
795 <p class="{!}fp-msg-text"></p>
796 <button class="{!}fp-msg-butok">'.get_string('ok').'</button>
797 </div>';
798 return preg_replace('/\{\!\}/', '', $rv);
802 * FilePicker JS template for popup dialogue window asking for action when file with the same name already exists.
804 * Must have one top element, CSS for this element must define width and height of the window;
806 * content of element with class 'fp-dlg-text' will be replaced with dialog text;
807 * elements with classes 'fp-dlg-butoverwrite', 'fp-dlg-butrename',
808 * 'fp-dlg-butoverwriteall', 'fp-dlg-butrenameall' and 'fp-dlg-butcancel' will
809 * hold onclick events;
811 * content of element with class 'fp-dlg-butrename' will be substituted with appropriate string
812 * (Note that it may have long text)
814 * @return string
816 private function fp_js_template_processexistingfile() {
817 $rv = '
818 <div class="file-picker fp-dlg">
819 <p class="{!}fp-dlg-text"></p>
820 <div class="fp-dlg-buttons">
821 <button class="{!}fp-dlg-butoverwrite">'.get_string('overwrite', 'repository').'</button>
822 <button class="{!}fp-dlg-butrename"></button>
823 <button class="{!}fp-dlg-butcancel">'.get_string('cancel').'</button>
824 </div>
825 </div>';
826 return preg_replace('/\{\!\}/', '', $rv);
830 * FilePicker JS template for popup dialogue window asking for action when file with the same name already exists (multiple-file version).
832 * Must have one top element, CSS for this element must define width and height of the window;
834 * content of element with class 'fp-dlg-text' will be replaced with dialog text;
835 * elements with classes 'fp-dlg-butoverwrite', 'fp-dlg-butrename' and 'fp-dlg-butcancel' will
836 * hold onclick events;
838 * content of element with class 'fp-dlg-butrename' will be substituted with appropriate string
839 * (Note that it may have long text)
841 * @return string
843 private function fp_js_template_processexistingfilemultiple() {
844 $rv = '
845 <div class="file-picker fp-dlg">
846 <p class="{!}fp-dlg-text"></p>
847 <a class="{!}fp-dlg-butoverwrite fp-panel-button" href="#">'.get_string('overwrite', 'repository').'</a>
848 <a class="{!}fp-dlg-butcancel fp-panel-button" href="#">'.get_string('cancel').'</a>
849 <a class="{!}fp-dlg-butrename fp-panel-button" href="#"></a>
850 <br/>
851 <a class="{!}fp-dlg-butoverwriteall fp-panel-button" href="#">'.get_string('overwriteall', 'repository').'</a>
852 <a class="{!}fp-dlg-butrenameall fp-panel-button" href="#">'.get_string('renameall', 'repository').'</a>
853 </div>';
854 return preg_replace('/\{\!\}/', '', $rv);
858 * FilePicker JS template for repository login form including templates for each element type
860 * Must contain one <form> element with templates for different input types inside:
861 * Elements with classes 'fp-login-popup', 'fp-login-textarea', 'fp-login-select' and
862 * 'fp-login-input' are templates for displaying respective login form elements. Inside
863 * there must be exactly one element with type <button>, <textarea>, <select> or <input>
864 * (i.e. fp-login-popup should have <button>, fp-login-textarea should have <textarea>, etc.);
865 * They may also contain the <label> element and it's content will be substituted with
866 * label;
868 * You can also define elements with classes 'fp-login-checkbox', 'fp-login-text'
869 * but if they are not found, 'fp-login-input' will be used;
871 * Element with class 'fp-login-radiogroup' will be used for group of radio inputs. Inside
872 * it should hava a template for one radio input (with class 'fp-login-radio');
874 * Element with class 'fp-login-submit' will hold on click mouse event (form submission). It
875 * will be removed if at least one popup element is present;
877 * @return string
879 private function fp_js_template_loginform() {
880 $rv = '
881 <div class="fp-login-form">
882 <div class="fp-content-center">
883 <form>
884 <table >
885 <tr class="{!}fp-login-popup">
886 <td colspan="2">
887 <label>'.get_string('popup', 'repository').'</label>
888 <p class="fp-popup"><button class="{!}fp-login-popup-but">'.get_string('login', 'repository').'</button></p></td></tr>
889 <tr class="{!}fp-login-textarea">
890 <td colspan="2"><p><textarea></textarea></p></td></tr>
891 <tr class="{!}fp-login-select">
892 <td align="right"><label></label></td>
893 <td align="left"><select></select></td></tr>
894 <tr class="{!}fp-login-input">
895 <td class="label"><label></label></td>
896 <td class="input"><input/></td></tr>
897 <tr class="{!}fp-login-radiogroup">
898 <td align="right" width="30%" valign="top"><label></label></td>
899 <td align="left" valign="top"><p class="{!}fp-login-radio"><input /> <label></label></p></td></tr>
900 </table>
901 <p><button class="{!}fp-login-submit">'.get_string('submit', 'repository').'</button></p>
902 </form>
903 </div>
904 </div>';
905 return preg_replace('/\{\!\}/', '', $rv);
909 * Returns all FilePicker JavaScript templates as an array.
911 * @return array
913 public function filepicker_js_templates() {
914 $class_methods = get_class_methods($this);
915 $templates = array();
916 foreach ($class_methods as $method_name) {
917 if (preg_match('/^fp_js_template_(.*)$/', $method_name, $matches))
918 $templates[$matches[1]] = $this->$method_name();
920 return $templates;
924 * Returns HTML for default repository searchform to be passed to Filepicker
926 * This will be used as contents for search form defined in generallayout template
927 * (form with id {TOOLSEARCHID}).
928 * Default contents is one text input field with name="s"
930 public function repository_default_searchform() {
931 $str = '<div class="fp-def-search"><input name="s" value='.get_string('search', 'repository').' /></div>';
932 return $str;
937 * Data structure representing a general moodle file tree viewer
939 * @copyright 2010 Dongsheng Cai
940 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
941 * @since Moodle 2.0
943 class files_tree_viewer implements renderable {
944 public $tree;
945 public $path;
946 public $context;
949 * Constructor of moodle_file_tree_viewer class
950 * @param file_info $file_info
951 * @param array $options
953 public function __construct(file_info $file_info, array $options = null) {
954 global $CFG;
956 //note: this MUST NOT use get_file_storage() !!!!!!!!!!!!!!!!!!!!!!!!!!!!
957 $this->options = (array)$options;
958 $this->context = $options['context'];
960 $this->tree = array();
961 $children = $file_info->get_children();
962 $current_file_params = $file_info->get_params();
963 $parent_info = $file_info->get_parent();
964 $level = $parent_info;
965 $this->path = array();
966 while ($level) {
967 $params = $level->get_params();
968 $context = get_context_instance_by_id($params['contextid']);
969 // $this->context is current context
970 if ($context->id != $this->context->id or empty($params['filearea'])) {
971 break;
973 // unset unused parameters
974 unset($params['component']);
975 unset($params['filearea']);
976 unset($params['filename']);
977 unset($params['itemid']);
978 $url = new moodle_url('/files/index.php', $params);
979 $this->path[] = html_writer::link($url, $level->get_visible_name());
980 $level = $level->get_parent();
982 $this->path = array_reverse($this->path);
983 if ($current_file_params['filepath'] != '/') {
984 $this->path[] = $file_info->get_visible_name();
987 foreach ($children as $child) {
988 $filedate = $child->get_timemodified();
989 $filesize = $child->get_filesize();
990 $mimetype = $child->get_mimetype();
991 $params = $child->get_params();
992 unset($params['component']);
993 unset($params['filearea']);
994 unset($params['filename']);
995 unset($params['itemid']);
996 $fileitem = array(
997 'params' => $params,
998 'filename' => $child->get_visible_name(),
999 'mimetype' => $child->get_mimetype(),
1000 'filedate' => $filedate ? $filedate : '',
1001 'filesize' => $filesize ? $filesize : ''
1003 $url = new moodle_url('/files/index.php', $params);
1004 if ($child->is_directory()) {
1005 $fileitem['isdir'] = true;
1006 $fileitem['url'] = $url->out(false);
1007 } else {
1008 $fileitem['url'] = $child->get_url();
1010 $this->tree[] = $fileitem;