2 // This file is part of Moodle - http://moodle.org/
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 * Provides user rendering functionality such as printing private files tree and displaying a search utility
21 * @copyright 2010 Dongsheng Cai <dongsheng@moodle.com>
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 defined('MOODLE_INTERNAL') ||
die();
28 * Provides user rendering functionality such as printing private files tree and displaying a search utility
29 * @copyright 2010 Dongsheng Cai <dongsheng@moodle.com>
30 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
32 class core_user_renderer
extends plugin_renderer_base
{
35 * Prints user files tree view
38 public function user_files_tree() {
39 return $this->render(new user_files_tree
);
43 * Render user files tree
45 * @param user_files_tree $tree
48 public function render_user_files_tree(user_files_tree
$tree) {
49 if (empty($tree->dir
['subdirs']) && empty($tree->dir
['files'])) {
50 $html = $this->output
->box(get_string('nofilesavailable', 'repository'));
52 $htmlid = 'user_files_tree_'.uniqid();
53 $module = array('name' => 'core_user', 'fullpath' => '/user/module.js');
54 $this->page
->requires
->js_init_call('M.core_user.init_tree', array(false, $htmlid), false, $module);
55 $html = '<div id="'.$htmlid.'">';
56 $html .= $this->htmllize_tree($tree, $tree->dir
);
63 * Internal function - creates htmls structure suitable for YUI tree.
64 * @param user_files_tree $tree
68 protected function htmllize_tree($tree, $dir) {
71 $yuiconfig['type'] = 'html';
73 if (empty($dir['subdirs']) and empty($dir['files'])) {
77 foreach ($dir['subdirs'] as $subdir) {
78 $image = $this->output
->pix_icon(file_folder_icon(), $subdir['dirname'], 'moodle', array('class' => 'icon'));
79 $result .= '<li yuiConfig=\''.json_encode($yuiconfig).'\'><div>'.$image.' '.s($subdir['dirname']).'</div> '.
80 $this->htmllize_tree($tree, $subdir).'</li>';
82 foreach ($dir['files'] as $file) {
83 $url = file_encode_url("$CFG->wwwroot/pluginfile.php", '/'.$tree->context
->id
.'/user/private'.
84 $file->get_filepath().$file->get_filename(), true);
85 $filename = $file->get_filename();
86 $image = $this->output
->pix_icon(file_file_icon($file), $filename, 'moodle', array('class' => 'icon'));
87 $result .= '<li yuiConfig=\''.json_encode($yuiconfig).'\'><div>'.$image.' '.html_writer
::link($url, $filename).
96 * Prints user search utility that can search user by first initial of firstname and/or first initial of lastname
97 * Prints a header with a title and the number of users found within that subset
98 * @param string $url the url to return to, complete with any parameters needed for the return
99 * @param string $firstinitial the first initial of the firstname
100 * @param string $lastinitial the first initial of the lastname
101 * @param int $usercount the amount of users meeting the search criteria
102 * @param int $totalcount the amount of users of the set/subset being searched
103 * @param string $heading heading of the subset being searched, default is All Participants
104 * @return string html output
106 public function user_search($url, $firstinitial, $lastinitial, $usercount, $totalcount, $heading = null) {
109 $strall = get_string('all');
110 $alpha = explode(',', get_string('alphabet', 'langconfig'));
112 if (!isset($heading)) {
113 $heading = get_string('allparticipants');
116 $content = html_writer
::start_tag('form', array('action' => new moodle_url($url)));
117 $content .= html_writer
::start_tag('div');
119 // Search utility heading.
120 $content .= $OUTPUT->heading($heading.get_string('labelsep', 'langconfig').$usercount.'/'.$totalcount, 3);
122 // Bar of first initials.
123 $content .= html_writer
::start_tag('div', array('class' => 'initialbar firstinitial'));
124 $content .= html_writer
::label(get_string('firstname').' : ', null);
126 if (!empty($firstinitial)) {
127 $content .= html_writer
::link($url.'&sifirst=', $strall);
129 $content .= html_writer
::tag('strong', $strall);
132 foreach ($alpha as $letter) {
133 if ($letter == $firstinitial) {
134 $content .= html_writer
::tag('strong', $letter);
136 $content .= html_writer
::link($url.'&sifirst='.$letter, $letter);
139 $content .= html_writer
::end_tag('div');
141 // Bar of last initials.
142 $content .= html_writer
::start_tag('div', array('class' => 'initialbar lastinitial'));
143 $content .= html_writer
::label(get_string('lastname').' : ', null);
145 if (!empty($lastinitial)) {
146 $content .= html_writer
::link($url.'&silast=', $strall);
148 $content .= html_writer
::tag('strong', $strall);
151 foreach ($alpha as $letter) {
152 if ($letter == $lastinitial) {
153 $content .= html_writer
::tag('strong', $letter);
155 $content .= html_writer
::link($url.'&silast='.$letter, $letter);
158 $content .= html_writer
::end_tag('div');
160 $content .= html_writer
::end_tag('div');
161 $content .= html_writer
::tag('div', ' ');
162 $content .= html_writer
::end_tag('form');
171 * @copyright 2010 Dongsheng Cai <dongsheng@moodle.com>
172 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
174 class user_files_tree
implements renderable
{
177 * @var context_user $context
187 * Create user files tree object
189 public function __construct() {
191 $this->context
= context_user
::instance($USER->id
);
192 $fs = get_file_storage();
193 $this->dir
= $fs->get_area_tree($this->context
->id
, 'user', 'private', 0);