3 // This file is part of Moodle - http://moodle.org/
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
20 * Print private files tree
23 * @copyright 2010 Dongsheng Cai <dongsheng@moodle.com>
24 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
28 defined('MOODLE_INTERNAL') ||
die();
30 class core_user_renderer
extends plugin_renderer_base
{
33 * Prints user files tree view
36 public function user_files_tree() {
37 return $this->render(new user_files_tree
);
40 public function render_user_files_tree(user_files_tree
$tree) {
41 if (empty($tree->dir
['subdirs']) && empty($tree->dir
['files'])) {
42 $html = $this->output
->box(get_string('nofilesavailable', 'repository'));
44 $htmlid = 'user_files_tree_'.uniqid();
45 $module = array('name'=>'core_user', 'fullpath'=>'/user/module.js');
46 $this->page
->requires
->js_init_call('M.core_user.init_tree', array(false, $htmlid), false, $module);
47 $html = '<div id="'.$htmlid.'">';
48 $html .= $this->htmllize_tree($tree, $tree->dir
);
55 * Internal function - creates htmls structure suitable for YUI tree.
57 protected function htmllize_tree($tree, $dir) {
60 $yuiconfig['type'] = 'html';
62 if (empty($dir['subdirs']) and empty($dir['files'])) {
66 foreach ($dir['subdirs'] as $subdir) {
67 $image = $this->output
->pix_icon(file_folder_icon(), $subdir['dirname'], 'moodle', array('class'=>'icon'));
68 $result .= '<li yuiConfig=\''.json_encode($yuiconfig).'\'><div>'.$image.' '.s($subdir['dirname']).'</div> '.$this->htmllize_tree($tree, $subdir).'</li>';
70 foreach ($dir['files'] as $file) {
71 $url = file_encode_url("$CFG->wwwroot/pluginfile.php", '/'.$tree->context
->id
.'/user/private'.$file->get_filepath().$file->get_filename(), true);
72 $filename = $file->get_filename();
73 $image = $this->output
->pix_icon(file_file_icon($file), $filename, 'moodle', array('class'=>'icon'));
74 $result .= '<li yuiConfig=\''.json_encode($yuiconfig).'\'><div>'.$image.' '.html_writer
::link($url, $filename).'</div></li>';
82 class user_files_tree
implements renderable
{
85 public function __construct() {
87 $this->context
= context_user
::instance($USER->id
);
88 $fs = get_file_storage();
89 $this->dir
= $fs->get_area_tree($this->context
->id
, 'user', 'private', 0);