mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 00:46:50 +02:00
MDL-42710 course: management cat sorting perfecting taking place
This commit is contained in:
parent
61bac37cf1
commit
e69a0251dc
4 changed files with 28 additions and 40 deletions
|
@ -337,48 +337,39 @@ class core_course_management_renderer extends plugin_renderer_base {
|
|||
$form .= html_writer::empty_tag('input', array('type' => 'hidden', 'name' => 'currentcategoryid', 'value' => $category->id));
|
||||
}
|
||||
$form .= html_writer::div(
|
||||
html_writer::span(get_string('for'), '', array('id' => 'selectsortby')) .
|
||||
' ' .
|
||||
html_writer::select(
|
||||
$selectoptions,
|
||||
'selectsortby',
|
||||
'',
|
||||
array('' => 'choosedots'),
|
||||
array('aria-labelledby' => 'selectsortby')
|
||||
'selectedcategories',
|
||||
false
|
||||
)
|
||||
);
|
||||
$form .= html_writer::div(
|
||||
html_writer::span(get_string('sortcategoriesby'), '', array('id' => 'resortselectedcategoriesby')) .
|
||||
' ' .
|
||||
html_writer::select(
|
||||
array(
|
||||
'name' => get_string('resortbyname'),
|
||||
'idnumber' => get_string('resortbyidnumber'),
|
||||
'name' => get_string('sortcategoriesbyname'),
|
||||
'idnumber' => get_string('sortcategoriesbyidnumber'),
|
||||
'none' => get_string('dontsortcategories')
|
||||
),
|
||||
'resortcategoriesby',
|
||||
'',
|
||||
array('none' => 'choosedots'),
|
||||
array('aria-labelledby' => 'resortselectedcategoriesby')
|
||||
'name',
|
||||
false
|
||||
)
|
||||
);
|
||||
$form .= html_writer::div(
|
||||
html_writer::span(get_string('sortcoursesby'), '', array('id' => 'resortselectedcoursesby')) .
|
||||
' ' .
|
||||
html_writer::select(
|
||||
array(
|
||||
'fullname' => get_string('resortbyfullname'),
|
||||
'shortname' => get_string('resortbyshortname'),
|
||||
'idnumber' => get_string('resortbyidnumber'),
|
||||
'fullname' => get_string('sortcoursesbyfullname'),
|
||||
'shortname' => get_string('sortcoursesbyshortname'),
|
||||
'idnumber' => get_string('sortcoursesbyidnumber'),
|
||||
'none' => get_string('dontsortcourses')
|
||||
),
|
||||
'resortcoursesby',
|
||||
'',
|
||||
array('none' => 'choosedots'),
|
||||
array('aria-labelledby' => 'resortselectedcoursesby')
|
||||
'fullname',
|
||||
false
|
||||
)
|
||||
);
|
||||
$form .= html_writer::empty_tag('input', array('type' => 'submit', 'name' => 'bulksort', 'value' => $strgo));
|
||||
$form .= html_writer::empty_tag('input', array('type' => 'submit', 'name' => 'bulksort', 'value' => get_string('sort')));
|
||||
$form .= html_writer::end_div();
|
||||
$html .= $this->detail_pair(
|
||||
get_string('sorting'),
|
||||
|
@ -398,7 +389,7 @@ class core_course_management_renderer extends plugin_renderer_base {
|
|||
array('' => 'choosedots'),
|
||||
array('aria-labelledby' => 'moveselectedcategoriesto')
|
||||
);
|
||||
$submit = array('type' => 'submit', 'name' => 'bulkmovecategories', 'value' => $strgo);
|
||||
$submit = array('type' => 'submit', 'name' => 'bulkmovecategories', 'value' => get_string('move'));
|
||||
$html .= $this->detail_pair(
|
||||
html_writer::span(get_string('moveselectedcategoriesto'), '', array('id' => 'moveselectedcategoriesto')),
|
||||
$select . html_writer::empty_tag('input', $submit)
|
||||
|
@ -680,7 +671,7 @@ class core_course_management_renderer extends plugin_renderer_base {
|
|||
array('' => 'choosedots'),
|
||||
array('aria-labelledby' => 'moveselectedcoursesto')
|
||||
);
|
||||
$submit = array('type' => 'submit', 'name' => 'bulkmovecourses', 'value' => get_string('go'));
|
||||
$submit = array('type' => 'submit', 'name' => 'bulkmovecourses', 'value' => get_string('move'));
|
||||
$html .= $this->detail_pair(
|
||||
html_writer::span(get_string('moveselectedcoursesto'), '', array('id' => 'moveselectedcoursesto')),
|
||||
$select . html_writer::empty_tag('input', $submit)
|
||||
|
|
|
@ -17,7 +17,7 @@ Feature: Test we can resort categories in the management interface.
|
|||
And I should see the "Course categories" management page
|
||||
And I select "All categories" from "menuselectsortby"
|
||||
And I select <sortby> from "menuresortcategoriesby"
|
||||
And I press "Go"
|
||||
And I press "Sort"
|
||||
# Redirect.
|
||||
And I should see the "Course categories" management page
|
||||
And I should see category listing <cat1> before <cat2>
|
||||
|
@ -25,8 +25,8 @@ Feature: Test we can resort categories in the management interface.
|
|||
|
||||
Examples:
|
||||
| sortby | cat1 | cat2 | cat3 |
|
||||
| "By name" | "Applied sciences" | "Extended social studies" | "Social studies" |
|
||||
| "By idnumber" | "Extended social studies" | "Social studies" | "Applied sciences" |
|
||||
| "Sort categories by name" | "Applied sciences" | "Extended social studies" | "Social studies" |
|
||||
| "Sort categories by ID number" | "Extended social studies" | "Social studies" | "Applied sciences" |
|
||||
|
||||
Scenario Outline: Test bulk sorting current category.
|
||||
Given the following "categories" exists:
|
||||
|
@ -44,7 +44,7 @@ Feature: Test we can resort categories in the management interface.
|
|||
And I should see the "Course categories and courses" management page
|
||||
And I select "This category" from "menuselectsortby"
|
||||
And I select <sortby> from "menuresortcategoriesby"
|
||||
And I press "Go"
|
||||
And I press "Sort"
|
||||
# Redirect.
|
||||
And I should see the "Course categories and courses" management page
|
||||
And I should see category listing <cat1> before <cat2>
|
||||
|
@ -52,8 +52,8 @@ Feature: Test we can resort categories in the management interface.
|
|||
|
||||
Examples:
|
||||
| sortby | cat1 | cat2 | cat3 |
|
||||
| "By name" | "Applied sciences" | "Extended social studies" | "Social studies" |
|
||||
| "By idnumber" | "Extended social studies" | "Social studies" | "Applied sciences" |
|
||||
| "Sort categories by name" | "Applied sciences" | "Extended social studies" | "Social studies" |
|
||||
| "Sort categories by ID number" | "Extended social studies" | "Social studies" | "Applied sciences" |
|
||||
|
||||
Scenario Outline: Test resorting subcategories.
|
||||
Given the following "categories" exists:
|
||||
|
|
|
@ -247,7 +247,7 @@ Feature: Course category management interface performs as expected
|
|||
And I should see the "Course categories" management page
|
||||
And I select "All categories" from "menuselectsortby"
|
||||
And I select <sortby> from "menuresortcategoriesby"
|
||||
And I press "Go"
|
||||
And I press "Sort"
|
||||
# Redirect.
|
||||
And I should see the "Course categories" management page
|
||||
And I should see category listing <cat1> before <cat2>
|
||||
|
@ -255,8 +255,8 @@ Feature: Course category management interface performs as expected
|
|||
|
||||
Examples:
|
||||
| sortby | cat1 | cat2 | cat3 |
|
||||
| "By name" | "Applied sciences" | "Extended social studies" | "Social studies" |
|
||||
| "By idnumber" | "Extended social studies" | "Social studies" | "Applied sciences" |
|
||||
| "Sort categories by name" | "Applied sciences" | "Extended social studies" | "Social studies" |
|
||||
| "Sort categories by ID number" | "Extended social studies" | "Social studies" | "Applied sciences" |
|
||||
|
||||
@javascript
|
||||
Scenario Outline: Sub categories are displayed correctly when resorted
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue