Bug 29058: Add 'Always show holds' checkbox to request.pl
[koha-ffzg.git] / C4 / Scheduler.pm
index da89f93..e2f6d85 100644 (file)
@@ -17,20 +17,16 @@ package C4::Scheduler;
 # You should have received a copy of the GNU General Public License
 # along with Koha; if not, see <http://www.gnu.org/licenses>.
 
-use strict;
-#use warnings; FIXME - Bug 2505
+use Modern::Perl;
 
-use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
 use C4::Context;
 use Schedule::At;
 
+our (@ISA, @EXPORT_OK);
 BEGIN {
-       # set the version for version checking
-    $VERSION = 3.07.00.049;
-       require Exporter;
-       @ISA = qw(Exporter);
-       @EXPORT =
-               qw(get_jobs get_at_jobs get_at_job add_at_job remove_at_job);
+    require Exporter;
+    @ISA       = qw(Exporter);
+    @EXPORT_OK = qw(get_jobs get_at_jobs get_at_job add_at_job remove_at_job);
 }
 
 =head1 NAME