|
Lines 1-7
Link Here
|
| 1 |
package C4::ClassSortRoutine; |
1 |
package C4::ClassSortRoutine; |
| 2 |
|
2 |
|
| 3 |
# Copyright (C) 2007 LibLime |
3 |
# Copyright 2022 Koha Development Team |
| 4 |
# |
4 |
# |
| 5 |
# This file is part of Koha. |
5 |
# This file is part of Koha. |
| 6 |
# |
6 |
# |
| 7 |
# Koha is free software; you can redistribute it and/or modify it |
7 |
# Koha is free software; you can redistribute it and/or modify it |
|
Lines 17-27
package C4::ClassSortRoutine;
Link Here
|
| 17 |
# You should have received a copy of the GNU General Public License |
17 |
# You should have received a copy of the GNU General Public License |
| 18 |
# along with Koha; if not, see <http://www.gnu.org/licenses>. |
18 |
# along with Koha; if not, see <http://www.gnu.org/licenses>. |
| 19 |
|
19 |
|
| 20 |
use strict; |
20 |
use Modern::Perl; |
| 21 |
use warnings; |
|
|
| 22 |
|
21 |
|
| 23 |
use Class::Factory::Util; |
22 |
use Class::Factory::Util; |
| 24 |
use C4::Context; |
|
|
| 25 |
|
23 |
|
| 26 |
our (@ISA, @EXPORT_OK); |
24 |
our (@ISA, @EXPORT_OK); |
| 27 |
BEGIN { |
25 |
BEGIN { |