From a8003c0a166807593b76c4aed89623c42dc80887 Mon Sep 17 00:00:00 2001 From: Sam Hemelryk Date: Fri, 11 Oct 2013 10:49:27 +1300 Subject: [PATCH] MDL-42249 course: converted all dropdowns to contextmenu icon --- course/classes/management_renderer.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/course/classes/management_renderer.php b/course/classes/management_renderer.php index 27e5aa419ec..0cd4fc2e162 100644 --- a/course/classes/management_renderer.php +++ b/course/classes/management_renderer.php @@ -283,7 +283,7 @@ class core_course_management_renderer extends plugin_renderer_base { )); } $menu->actiontext = get_string('createnew'); - $menu->actionicon = new pix_icon('t/add', ' ', 'moodle', array('class' => 'iconsmall', 'title' => '')); + $menu->actionicon = new pix_icon('t/contextmenu', ' ', 'moodle', array('class' => 'iconsmall', 'title' => '')); $actions[] = $this->render($menu); } if (coursecat::can_approve_course_requests()) { @@ -312,7 +312,7 @@ class core_course_management_renderer extends plugin_renderer_base { } else { $menu->actiontext = get_string('resortsubcategories'); } - $menu->actionicon = new pix_icon('t/sort', ' ', 'moodle', array('class' => 'iconsmall', 'title' => '')); + $menu->actionicon = new pix_icon('t/contextmenu', ' ', 'moodle', array('class' => 'iconsmall', 'title' => '')); $actions[] = $this->render($menu); } if (!$hasitems) { @@ -609,7 +609,7 @@ class core_course_management_renderer extends plugin_renderer_base { new action_menu_link_secondary($idnumberurl, null, get_string('resortbyidnumber')) )); $menu->actiontext = get_string('resortcourses'); - $menu->actionicon = new pix_icon('t/sort', ' ', 'moodle', array('class' => 'iconsmall', 'title' => '')); + $menu->actionicon = new pix_icon('t/contextmenu', ' ', 'moodle', array('class' => 'iconsmall', 'title' => '')); $actions[] = $this->render($menu); } $strall = get_string('all');