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 * This is the main renderer for the enrol section.
21 * @copyright 2010 Sam Hemelryk
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 * This is the core renderer
28 * @copyright 2010 Sam Hemelryk
29 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
31 class core_enrol_renderer
extends plugin_renderer_base
{
34 * Renders a course enrolment table
36 * @param course_enrolment_table $table
37 * @param moodleform $mform Form that contains filter controls
40 public function render_course_enrolment_users_table(course_enrolment_users_table
$table,
43 $table->initialise_javascript();
45 $buttons = $table->get_manual_enrol_buttons();
47 if (count($buttons) > 0) {
48 $buttonhtml .= html_writer
::start_tag('div', array('class' => 'enrol_user_buttons enrol-users-page-action'));
49 foreach ($buttons as $button) {
50 $buttonhtml .= $this->render($button);
52 $buttonhtml .= html_writer
::end_tag('div');
56 if (!empty($buttonhtml)) {
57 $content .= $buttonhtml;
59 $content .= $mform->render();
61 $content .= $this->output
->render($table->get_paging_bar());
63 // Check if the table has any bulk operations. If it does we want to wrap the table in a
64 // form so that we can capture and perform any required bulk operations.
65 if ($table->has_bulk_user_enrolment_operations()) {
66 $content .= html_writer
::start_tag('form', array('action' => new moodle_url('/enrol/bulkchange.php'), 'method' => 'post'));
67 foreach ($table->get_combined_url_params() as $key => $value) {
68 if ($key == 'action') {
71 $content .= html_writer
::empty_tag('input', array('type' => 'hidden', 'name' => $key, 'value' => $value));
73 $content .= html_writer
::empty_tag('input', array('type' => 'hidden', 'name' => 'action', 'value' => 'bulkchange'));
74 $content .= html_writer
::table($table);
75 $content .= html_writer
::start_tag('div', array('class' => 'singleselect bulkuserop'));
76 $content .= html_writer
::start_tag('select', array('name' => 'bulkuserop'));
77 $content .= html_writer
::tag('option', get_string('withselectedusers', 'enrol'), array('value' => ''));
78 $options = array('' => get_string('withselectedusers', 'enrol'));
79 foreach ($table->get_bulk_user_enrolment_operations() as $operation) {
80 $content .= html_writer
::tag('option', $operation->get_title(), array('value' => $operation->get_identifier()));
82 $content .= html_writer
::end_tag('select');
83 $content .= html_writer
::empty_tag('input', array('type' => 'submit', 'value' => get_string('go')));
84 $content .= html_writer
::end_tag('div');
86 $content .= html_writer
::end_tag('form');
88 $content .= html_writer
::table($table);
90 $content .= $this->output
->render($table->get_paging_bar());
91 if (!empty($buttonhtml)) {
92 $content .= $buttonhtml;
98 * Renderers the enrol_user_button.
100 * @param enrol_user_button $button
101 * @return string XHTML
103 protected function render_enrol_user_button(enrol_user_button
$button) {
104 $attributes = array('type' => 'submit',
105 'value' => $button->label
,
106 'disabled' => $button->disabled ?
'disabled' : null,
107 'title' => $button->tooltip
);
109 if ($button->actions
) {
110 $id = html_writer
::random_id('single_button');
111 $attributes['id'] = $id;
112 foreach ($button->actions
as $action) {
113 $this->add_action_handler($action, $id);
116 $button->initialise_js($this->page
);
118 // first the input element
119 $output = html_writer
::empty_tag('input', $attributes);
121 // then hidden fields
122 $params = $button->url
->params();
123 if ($button->method
=== 'post') {
124 $params['sesskey'] = sesskey();
126 foreach ($params as $var => $val) {
127 $output .= html_writer
::empty_tag('input', array('type' => 'hidden', 'name' => $var, 'value' => $val));
130 // then div wrapper for xhtml strictness
131 $output = html_writer
::tag('div', $output);
133 // now the form itself around it
134 if ($button->method
=== 'get') {
135 $url = $button->url
->out_omit_querystring(true); // url without params, the anchor part allowed
137 $url = $button->url
->out_omit_querystring(); // url without params, the anchor part not allowed
140 $url = '#'; // there has to be always some action
142 $attributes = array('method' => $button->method
,
144 'id' => $button->formid
);
145 $output = html_writer
::tag('form', $output, $attributes);
147 // and finally one more wrapper with class
148 return html_writer
::tag('div', $output, array('class' => $button->class));
152 * Renders a course enrolment table
154 * @param course_enrolment_table $table
157 protected function render_course_enrolment_other_users_table(course_enrolment_other_users_table
$table) {
159 $table->initialise_javascript();
162 $searchbutton = $table->get_user_search_button();
164 $content .= $this->output
->render($searchbutton);
166 $content .= html_writer
::tag('div', get_string('otheruserdesc', 'enrol'), array('class'=>'otherusersdesc'));
167 $content .= $this->output
->render($table->get_paging_bar());
168 $content .= html_writer
::table($table);
169 $content .= $this->output
->render($table->get_paging_bar());
170 $searchbutton = $table->get_user_search_button();
172 $content .= $this->output
->render($searchbutton);
178 * Generates HTML to display the users roles and any available actions
181 * @param array $roles
182 * @param array $assignableroles
183 * @param moodle_url $pageurl
186 public function user_roles_and_actions($userid, $roles, $assignableroles, $canassign, $pageurl) {
187 $iconenrolremove = $this->output
->pix_url('t/delete');
191 // Get list of roles.
193 foreach ($roles as $roleid=>$role) {
194 if ($canassign and (is_siteadmin() or isset($assignableroles[$roleid])) and !$role['unchangeable']) {
195 $strunassign = get_string('unassignarole', 'role', $role['text']);
196 $icon = html_writer
::empty_tag('img', array('alt'=>$strunassign, 'src'=>$iconenrolremove));
197 $url = new moodle_url($pageurl, array('action'=>'unassign', 'roleid'=>$roleid, 'user'=>$userid));
198 $rolesoutput .= html_writer
::tag('div', $role['text'] . html_writer
::link($url, $icon, array('class'=>'unassignrolelink', 'rel'=>$roleid, 'title'=>$strunassign)), array('class'=>'role role_'.$roleid));
200 $rolesoutput .= html_writer
::tag('div', $role['text'], array('class'=>'role unchangeable', 'rel'=>$roleid));
204 if (!empty($assignableroles) && $canassign) {
205 $roleids = array_keys($roles);
207 foreach (array_keys($assignableroles) as $key) {
208 if (!in_array($key, $roleids)) {
209 $hasallroles = false;
214 $url = new moodle_url($pageurl, array('action' => 'assign', 'user' => $userid));
215 $roleicon = $this->output
->pix_icon('i/assignroles', get_string('assignroles', 'role'));
216 $link = html_writer
::link($url, $roleicon, array('class' => 'assignrolelink'));
217 $output = html_writer
::tag('div', $link, array('class'=>'addrole'));
220 $output .= html_writer
::tag('div', $rolesoutput, array('class'=>'roles'));
225 * Generates the HTML to view the users groups and available group actions
228 * @param array $groups
229 * @param array $allgroups
230 * @param bool $canmanagegroups
231 * @param moodle_url $pageurl
234 public function user_groups_and_actions($userid, $groups, $allgroups, $canmanagegroups, $pageurl) {
235 $iconenrolremove = $this->output
->pix_url('t/delete');
237 $groupicon = $this->output
->pix_icon('i/group', get_string('addgroup', 'group'));
240 foreach($groups as $groupid=>$name) {
241 if ($canmanagegroups and groups_remove_member_allowed($groupid, $userid)) {
242 $icon = html_writer
::empty_tag('img', array('alt'=>get_string('removefromgroup', 'group', $name), 'src'=>$iconenrolremove));
243 $url = new moodle_url($pageurl, array('action'=>'removemember', 'group'=>$groupid, 'user'=>$userid));
244 $groupoutput .= html_writer
::tag('div', $name . html_writer
::link($url, $icon), array('class'=>'group', 'rel'=>$groupid));
246 $groupoutput .= html_writer
::tag('div', $name, array('class'=>'group', 'rel'=>$groupid));
250 if ($canmanagegroups && (count($groups) < count($allgroups))) {
251 $url = new moodle_url($pageurl, array('action'=>'addmember', 'user'=>$userid));
252 $output .= html_writer
::tag('div', html_writer
::link($url, $groupicon), array('class'=>'addgroup'));
254 $output = $output.html_writer
::tag('div', $groupoutput, array('class'=>'groups'));
259 * Generates the HTML for the given enrolments + available actions
262 * @param array $enrolments
263 * @param moodle_url $pageurl
266 public function user_enrolments_and_actions($enrolments) {
268 foreach ($enrolments as $ue) {
269 $enrolmentoutput = $ue['text'].' '.$ue['period'];
271 $enrolmentoutput = html_writer
::tag('span', $enrolmentoutput, array('class'=>'dimmed_text'));
273 $enrolmentoutput = html_writer
::tag('span', $enrolmentoutput);
275 foreach ($ue['actions'] as $action) {
276 $enrolmentoutput .= $this->render($action);
278 $output .= html_writer
::tag('div', $enrolmentoutput, array('class'=>'enrolment'));
284 * Renders a user enrolment action
285 * @param user_enrolment_action $icon
288 protected function render_user_enrolment_action(user_enrolment_action
$icon) {
289 return html_writer
::link($icon->get_url(), $this->output
->render($icon->get_icon()), $icon->get_attributes());
294 * Main course enrolment table
296 * This table is used to display the enrolment information for a course.
297 * It requires that a course enrolment manager be provided during constuct with
298 * provides all of the information for the table.
299 * The control then produces the table, the paging, and the associated JS actions
304 * @copyright 2010 Sam Hemelryk
305 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
307 class course_enrolment_table
extends html_table
implements renderable
{
310 * The get/post variable that is used to identify the page.
313 const PAGEVAR
= 'page';
316 * The get/post variable to is used to identify the number of items to display
320 const PERPAGEVAR
= 'perpage';
323 * The get/post variable that is used to identify the sort field for the table.
326 const SORTVAR
= 'sort';
329 * The get/post variable that is used to identify the sort direction for the table.
332 const SORTDIRECTIONVAR
= 'dir';
335 * The default number of items per page.
338 const DEFAULTPERPAGE
= 100;
341 * The default sort, options are course_enrolment_table::$sortablefields
344 const DEFAULTSORT
= 'lastname';
347 * The default direction
350 const DEFAULTSORTDIRECTION
= 'ASC';
353 * The current page, starting from 0
359 * The total number of pages
365 * The number of items to display per page
371 * The sort field for this table, should be one of course_enrolment_table::$sortablefields
377 * The sort direction, either ASC or DESC
380 public $sortdirection;
383 * The course manager this table is displaying for
384 * @var course_enrolment_manager
389 * The paging bar that controls the paging for this table
392 protected $pagingbar = null;
395 * The total number of users enrolled in the course
398 protected $totalusers = null;
401 * The users enrolled in this course
404 protected $users = null;
407 * The fields for this table
410 protected $fields = array();
413 * An array of bulk user enrolment operations
416 protected $bulkoperations = array();
419 * An array of sortable fields
423 protected static $sortablefields = array('firstname', 'lastname', 'firstnamephonetic', 'lastnamephonetic', 'middlename',
424 'alternatename', 'idnumber', 'email', 'phone1', 'phone2', 'institution', 'department', 'lastaccess', 'lastcourseaccess' );
427 * Constructs the table
429 * @param course_enrolment_manager $manager
431 public function __construct(course_enrolment_manager
$manager) {
433 $this->manager
= $manager;
435 $this->page
= optional_param(self
::PAGEVAR
, 0, PARAM_INT
);
436 $this->perpage
= optional_param(self
::PERPAGEVAR
, self
::DEFAULTPERPAGE
, PARAM_INT
);
437 $this->sort
= optional_param(self
::SORTVAR
, self
::DEFAULTSORT
, PARAM_ALPHANUM
);
438 $this->sortdirection
= optional_param(self
::SORTDIRECTIONVAR
, self
::DEFAULTSORTDIRECTION
, PARAM_ALPHA
);
440 $this->attributes
= array('class'=>'userenrolment');
441 if (!in_array($this->sort
, self
::$sortablefields)) {
442 $this->sort
= self
::DEFAULTSORT
;
444 if ($this->page
< 0) {
447 if ($this->sortdirection
!== 'ASC' && $this->sortdirection
!== 'DESC') {
448 $this->sortdirection
= self
::DEFAULTSORTDIRECTION
;
451 $this->id
= html_writer
::random_id();
453 // Collect the bulk operations for the currently filtered plugin if there is one.
454 $plugin = $manager->get_filtered_enrolment_plugin();
455 if ($plugin and enrol_is_enabled($plugin->get_name())) {
456 $this->bulkoperations
= $plugin->get_bulk_operations($manager);
461 * Returns an array of enrol_user_buttons that are created by the different
462 * enrolment plugins available.
466 public function get_manual_enrol_buttons() {
467 return $this->manager
->get_manual_enrol_buttons();
471 * Gets the sort direction for a given field
473 * @param string $field
474 * @return string ASC or DESC
476 public function get_field_sort_direction($field) {
477 if ($field == $this->sort
) {
478 return ($this->sortdirection
== 'ASC')?
'DESC':'ASC';
480 return self
::DEFAULTSORTDIRECTION
;
484 * Sets the fields for this table. These get added to the tables head as well.
486 * You can also use a multi dimensional array for this to have multiple fields
489 * @param array $fields An array of fields to set
490 * @param string $output
492 public function set_fields($fields, $output) {
493 $this->fields
= $fields;
494 $this->head
= array();
495 $this->colclasses
= array();
496 $this->align
= array();
497 $url = $this->manager
->get_moodlepage()->url
;
499 if (!empty($this->bulkoperations
)) {
500 // If there are bulk operations add a column for checkboxes.
502 $this->colclasses
[] = 'field col_bulkops';
505 foreach ($fields as $name => $label) {
507 if (is_array($label)) {
509 foreach ($label as $n => $l) {
513 if (!in_array($n, self
::$sortablefields)) {
516 $sorturl = new moodle_url($url, array(self
::SORTVAR
=> $n, self
::SORTDIRECTIONVAR
=> $this->get_field_sort_direction($n)));
517 $link = html_writer
::link($sorturl, $fields[$name][$n]);
518 if ($this->sort
== $n) {
519 $link .= $this->get_direction_icon($output, $n);
521 $bits[] = html_writer
::tag('span', $link, array('class'=>'subheading_'.$n));
525 $newlabel = join(' / ', $bits);
527 if (!in_array($name, self
::$sortablefields)) {
530 $sorturl = new moodle_url($url, array(self
::SORTVAR
=> $name, self
::SORTDIRECTIONVAR
=> $this->get_field_sort_direction($name)));
531 $newlabel = html_writer
::link($sorturl, $fields[$name]);
532 if ($this->sort
== $name) {
533 $newlabel .= $this->get_direction_icon($output, $name);
537 $this->head
[] = $newlabel;
538 $this->colclasses
[] = 'field col_'.$name;
542 * Sets the total number of users
544 * @param int $totalusers
546 public function set_total_users($totalusers) {
547 $this->totalusers
= $totalusers;
548 $this->pages
= ceil($this->totalusers
/ $this->perpage
);
549 if ($this->page
> $this->pages
) {
550 $this->page
= $this->pages
;
554 * Sets the users for this table
556 * @param array $users
559 public function set_users(array $users) {
560 $this->users
= $users;
561 $hasbulkops = !empty($this->bulkoperations
);
562 foreach ($users as $userid=>$user) {
563 $user = (array)$user;
564 $row = new html_table_row();
565 $row->attributes
= array('class' => 'userinforow');
566 $row->id
= 'user_'.$userid;
567 $row->cells
= array();
569 // Add a checkbox into the first column.
570 $input = html_writer
::empty_tag('input', array('type' => 'checkbox', 'name' => 'bulkuser[]', 'value' => $userid));
571 $row->cells
[] = new html_table_cell($input);
573 foreach ($this->fields
as $field => $label) {
574 if (is_array($label)) {
576 foreach (array_keys($label) as $subfield) {
577 if (array_key_exists($subfield, $user)) {
578 $bits[] = html_writer
::tag('div', $user[$subfield], array('class'=>'subfield subfield_'.$subfield));
584 $row->cells
[] = new html_table_cell(join(' ', $bits));
586 if (!array_key_exists($field, $user)) {
587 $user[$field] = ' ';
589 $row->cells
[] = new html_table_cell($user[$field]);
592 $this->data
[] = $row;
596 public function initialise_javascript() {
597 if (has_capability('moodle/role:assign', $this->manager
->get_context())) {
598 $this->manager
->get_moodlepage()->requires
->strings_for_js(array(
601 'confirmunassigntitle',
602 'confirmunassignyes',
605 $modules = array('moodle-enrol-rolemanager', 'moodle-enrol-rolemanager-skin');
606 $function = 'M.enrol.rolemanager.init';
608 'containerId'=>$this->id
,
609 'userIds'=>array_keys($this->users
),
610 'courseId'=>$this->manager
->get_course()->id
,
611 'otherusers'=>isset($this->otherusers
));
612 $this->manager
->get_moodlepage()->requires
->yui_module($modules, $function, array($arguments));
617 * Gets the paging bar instance for this table
621 public function get_paging_bar() {
622 if ($this->pagingbar
== null) {
623 $this->pagingbar
= new paging_bar($this->totalusers
, $this->page
, $this->perpage
, $this->manager
->get_moodlepage()->url
, self
::PAGEVAR
);
625 return $this->pagingbar
;
629 * Gets the direction icon for the sortable field within this table
631 * @param core_renderer $output
632 * @param string $field
635 protected function get_direction_icon($output, $field) {
636 $direction = self
::DEFAULTSORTDIRECTION
;
637 if ($this->sort
== $field) {
638 $direction = $this->sortdirection
;
640 if ($direction === 'ASC') {
641 return html_writer
::empty_tag('img', array('alt' => '', 'class' => 'iconsort',
642 'src' => $output->pix_url('t/sort_asc')));
644 return html_writer
::empty_tag('img', array('alt' => '', 'class' => 'iconsort',
645 'src' => $output->pix_url('t/sort_desc')));
650 * Gets the params that will need to be added to the url in order to return to this page.
654 public function get_url_params() {
656 self
::PAGEVAR
=> $this->page
,
657 self
::PERPAGEVAR
=> $this->perpage
,
658 self
::SORTVAR
=> $this->sort
,
659 self
::SORTDIRECTIONVAR
=> $this->sortdirection
664 * Returns an array of URL params for both the table and the manager.
668 public function get_combined_url_params() {
669 return $this->get_url_params() +
$this->manager
->get_url_params();
673 * Sets the bulk operations for this table.
675 * @param array $bulkoperations
677 public function set_bulk_user_enrolment_operations(array $bulkoperations) {
678 $this->bulkoperations
= $bulkoperations;
682 * Returns an array of bulk operations.
686 public function get_bulk_user_enrolment_operations() {
687 return $this->bulkoperations
;
691 * Returns true fi the table is aware of any bulk operations that can be performed on users
692 * selected from the currently filtered enrolment plugins.
696 public function has_bulk_user_enrolment_operations() {
697 return !empty($this->bulkoperations
);
702 * Table control used for enrolled users
704 * @copyright 2010 Sam Hemelryk
705 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
707 class course_enrolment_users_table
extends course_enrolment_table
{
712 * Table used for other users
714 * Other users are users who have roles but are not enrolled.
716 * @copyright 2010 Sam Hemelryk
717 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
719 class course_enrolment_other_users_table
extends course_enrolment_table
{
721 public $otherusers = true;
724 * Constructs the table
726 * @param course_enrolment_manager $manager
728 public function __construct(course_enrolment_manager
$manager) {
729 parent
::__construct($manager);
730 $this->attributes
= array('class'=>'userenrolment otheruserenrolment');
734 * Gets a button to search users and assign them roles in the course.
736 * @staticvar int $count
738 * @return single_button
740 public function get_user_search_button() {
742 if (!has_capability('moodle/role:assign', $this->manager
->get_context())) {
746 $url = new moodle_url('/admin/roles/assign.php', array('contextid'=>$this->manager
->get_context()->id
, 'sesskey'=>sesskey()));
747 $control = new single_button($url, get_string('assignroles', 'role'), 'get');
748 $control->class = 'singlebutton assignuserrole instance'.$count;
750 $this->manager
->get_moodlepage()->requires
->strings_for_js(array(
758 'errajaxfailedenrol',
766 'enrolperiod'), 'enrol');
767 $this->manager
->get_moodlepage()->requires
->string_for_js('assignrole', 'role');
769 $modules = array('moodle-enrol-otherusersmanager', 'moodle-enrol-otherusersmanager-skin');
770 $function = 'M.enrol.otherusersmanager.init';
772 'courseId'=> $this->manager
->get_course()->id
,
773 'ajaxUrl' => '/enrol/ajax.php',
774 'url' => $this->manager
->get_moodlepage()->url
->out(false));
775 $this->manager
->get_moodlepage()->requires
->yui_module($modules, $function, array($arguments));