Merge branch 'master_MDL-29690' of git://github.com/danmarsden/moodle
This commit is contained in:
@@ -204,11 +204,11 @@ class mod_choice_renderer extends plugin_renderer_base {
|
||||
if ($choices->viewresponsecapability && $choices->deleterepsonsecapability) {
|
||||
$selecturl = new moodle_url('#');
|
||||
|
||||
$selectallactions = new component_action('click',"select_all_in", array('div',null,'tablecontainer'));
|
||||
$selectallactions = new component_action('click',"checkall");
|
||||
$selectall = new action_link($selecturl, get_string('selectall'), $selectallactions);
|
||||
$actiondata .= $this->output->render($selectall) . ' / ';
|
||||
|
||||
$deselectallactions = new component_action('click',"deselect_all_in", array('div',null,'tablecontainer'));
|
||||
$deselectallactions = new component_action('click',"checknone");
|
||||
$deselectall = new action_link($selecturl, get_string('deselectall'), $deselectallactions);
|
||||
$actiondata .= $this->output->render($deselectall);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user