Merge branch 'wip-MDL-58697-33-assigngrading' of git://github.com/adamann2/moodle...
[moodle.git] / user / renderer.php
blob2f384fc42c0e02f3e3e30e0cb9b1675a43d030df
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
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.
8 //
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/>.
17 /**
18 * Provides user rendering functionality such as printing private files tree and displaying a search utility
20 * @package core_user
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();
27 /**
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 {
34 /**
35 * Prints user files tree view
36 * @return string
38 public function user_files_tree() {
39 return $this->render(new user_files_tree);
42 /**
43 * Render user files tree
45 * @param user_files_tree $tree
46 * @return string HTML
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'));
51 } else {
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);
57 $html .= '</div>';
59 return $html;
62 /**
63 * Internal function - creates htmls structure suitable for YUI tree.
64 * @param user_files_tree $tree
65 * @param array $dir
66 * @return string HTML
68 protected function htmllize_tree($tree, $dir) {
69 global $CFG;
70 $yuiconfig = array();
71 $yuiconfig['type'] = 'html';
73 if (empty($dir['subdirs']) and empty($dir['files'])) {
74 return '';
76 $result = '<ul>';
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).
88 '</div></li>';
90 $result .= '</ul>';
92 return $result;
95 /**
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) {
107 global $OUTPUT;
109 if ($firstinitial !== 'all') {
110 set_user_preference('ifirst', $firstinitial);
112 if ($lastinitial !== 'all') {
113 set_user_preference('ilast', $lastinitial);
116 if (!isset($heading)) {
117 $heading = get_string('allparticipants');
120 $content = html_writer::start_tag('form', array('action' => new moodle_url($url)));
121 $content .= html_writer::start_tag('div');
123 // Search utility heading.
124 $content .= $OUTPUT->heading($heading.get_string('labelsep', 'langconfig').$usercount.'/'.$totalcount, 3);
126 // Initials bar.
127 $prefixfirst = 'sifirst';
128 $prefixlast = 'silast';
129 $content .= $OUTPUT->initials_bar($firstinitial, 'firstinitial', get_string('firstname'), $prefixfirst, $url);
130 $content .= $OUTPUT->initials_bar($lastinitial, 'lastinitial', get_string('lastname'), $prefixlast, $url);
132 $content .= html_writer::end_tag('div');
133 $content .= html_writer::tag('div', '&nbsp;');
134 $content .= html_writer::end_tag('form');
136 return $content;
140 * Displays the list of tagged users
142 * @param array $userlist
143 * @param bool $exclusivemode if set to true it means that no other entities tagged with this tag
144 * are displayed on the page and the per-page limit may be bigger
145 * @return string
147 public function user_list($userlist, $exclusivemode) {
148 $tagfeed = new core_tag\output\tagfeed();
149 foreach ($userlist as $user) {
150 $userpicture = $this->output->user_picture($user, array('size' => $exclusivemode ? 100 : 35));
151 $fullname = fullname($user);
152 if (user_can_view_profile($user)) {
153 $profilelink = new moodle_url('/user/view.php', array('id' => $user->id));
154 $fullname = html_writer::link($profilelink, $fullname);
156 $tagfeed->add($userpicture, $fullname);
159 $items = $tagfeed->export_for_template($this->output);
161 if ($exclusivemode) {
162 $output = '<div><ul class="inline-list">';
163 foreach ($items['items'] as $item) {
164 $output .= '<li><div class="user-box">'. $item['img'] . $item['heading'] ."</div></li>\n";
166 $output .= "</ul></div>\n";
167 return $output;
170 return $this->output->render_from_template('core_tag/tagfeed', $items);
176 * User files tree
177 * @copyright 2010 Dongsheng Cai <dongsheng@moodle.com>
178 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
180 class user_files_tree implements renderable {
183 * @var context_user $context
185 public $context;
188 * @var array $dir
190 public $dir;
193 * Create user files tree object
195 public function __construct() {
196 global $USER;
197 $this->context = context_user::instance($USER->id);
198 $fs = get_file_storage();
199 $this->dir = $fs->get_area_tree($this->context->id, 'user', 'private', 0);