Proyectos de Subversion Moodle

Rev

Rev 1 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 1441
Línea 17... Línea 17...
17
 * Allow the user to search for groups within the user report.
17
 * Allow the user to search for groups within the user report.
18
 *
18
 *
19
 * @module    gradereport_user/group
19
 * @module    gradereport_user/group
20
 * @copyright 2023 Mathew May <mathew.solutions>
20
 * @copyright 2023 Mathew May <mathew.solutions>
21
 * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
21
 * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
-
 
22
 * @deprecated since Moodle 4.5 - please use core_course/actionbar/group instead.
-
 
23
 * @todo       Final deprecation in Moodle 6.0. See MDL-82116.
22
 */
24
 */
23
import GroupSearch from 'core_group/comboboxsearch/group';
25
import GroupSearch from 'core_group/comboboxsearch/group';
24
import Url from 'core/url';
26
import Url from 'core/url';
Línea 25... Línea 27...
25
 
27
 
Línea 26... Línea 28...
26
export default class Group extends GroupSearch {
28
export default class Group extends GroupSearch {
Línea 27... Línea 29...
27
 
29
 
-
 
30
    courseID;
-
 
31
 
-
 
32
    constructor() {
-
 
33
        window.console.warn(
-
 
34
            'The gradereport_user/group module has been deprecated since Moodle 4.5.' +
28
    courseID;
35
            ' Please use core_course/actionbar/group instead.',
Línea 29... Línea 36...
29
 
36
        );
30
    constructor() {
37
 
31
        super();
38
        super();