@@ -, +, @@ --- Koha/Sign.pm | 40 ++++++++++++++++++++++++++++++++++ Koha/SignStream.pm | 40 ++++++++++++++++++++++++++++++++++ Koha/SignStreams.pm | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++ Koha/Signs.pm | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++ Koha/SignsToStream.pm | 40 ++++++++++++++++++++++++++++++++++ Koha/SignsToStreams.pm | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 297 insertions(+) create mode 100644 Koha/Sign.pm create mode 100644 Koha/SignStream.pm create mode 100644 Koha/SignStreams.pm create mode 100644 Koha/Signs.pm create mode 100644 Koha/SignsToStream.pm create mode 100644 Koha/SignsToStreams.pm --- a/Koha/Sign.pm +++ a/Koha/Sign.pm @@ -0,0 +1,40 @@ +package Koha::Sign; + +# Copyright 2016 Aleisha Amohia +# +# This file is part of Koha. +# +# Koha is free software; you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation; either version 3 of the License, or (at your option) any later +# version. +# +# Koha is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with Koha; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +use Modern::Perl; + +use Koha::Database; + +use base qw( Koha::Object ); + +=head1 NAME + +Koha::Sign - Koha Sign object class + +=head1 API + +=head2 Class Methods + +=cut + +sub _type { + return 'Sign'; +} + +1; --- a/Koha/SignStream.pm +++ a/Koha/SignStream.pm @@ -0,0 +1,40 @@ +package Koha::SignStream; + +# Copyright 2016 Aleisha Amohia +# +# This file is part of Koha. +# +# Koha is free software; you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation; either version 3 of the License, or (at your option) any later +# version. +# +# Koha is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with Koha; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +use Modern::Perl; + +use Koha::Database; + +use base qw( Koha::Object ); + +=head1 NAME + +Koha::SignStream - Koha SignStream object class + +=head1 API + +=head2 Class Methods + +=cut + +sub _type { + return 'SignStream'; +} + +1; --- a/Koha/SignStreams.pm +++ a/Koha/SignStreams.pm @@ -0,0 +1,59 @@ +package Koha::SignStreams; + +# Copyright 2016 Aleisha Amohia +# +# This file is part of Koha. +# +# Koha is free software; you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation; either version 3 of the License, or (at your option) any later +# version. +# +# Koha is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with Koha; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +use Modern::Perl; + +use Koha::Database; +use Koha::SignStream; + +use base qw( Koha::Objects ); + +=head1 NAME + +Koha::SignStreams - Koha SignStream object set class + +=head1 API + +=head2 Class Methods + +=cut + +=head3 type + +=cut + +sub _type { + return 'SignStream'; +} + +=head3 object_class + +=cut + +sub object_class { + return 'Koha::SignStream'; +} + +=head1 AUTHOR + +Aleisha Amohia + +=cut + +1; --- a/Koha/Signs.pm +++ a/Koha/Signs.pm @@ -0,0 +1,59 @@ +package Koha::Signs; + +# Copyright 2016 Aleisha Amohia +# +# This file is part of Koha. +# +# Koha is free software; you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation; either version 3 of the License, or (at your option) any later +# version. +# +# Koha is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with Koha; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +use Modern::Perl; + +use Koha::Database; +use Koha::Sign; + +use base qw( Koha::Objects ); + +=head1 NAME + +Koha::Signs - Koha Sign object set class + +=head1 API + +=head2 Class Methods + +=cut + +=head3 type + +=cut + +sub _type { + return 'Sign'; +} + +=head3 object_class + +=cut + +sub object_class { + return 'Koha::Sign'; +} + +=head1 AUTHOR + +Aleisha Amohia + +=cut + +1; --- a/Koha/SignsToStream.pm +++ a/Koha/SignsToStream.pm @@ -0,0 +1,40 @@ +package Koha::SignsToStream; + +# Copyright 2016 Aleisha Amohia +# +# This file is part of Koha. +# +# Koha is free software; you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation; either version 3 of the License, or (at your option) any later +# version. +# +# Koha is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with Koha; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +use Modern::Perl; + +use Koha::Database; + +use base qw( Koha::Object ); + +=head1 NAME + +Koha::SignsToStream - SignsToStream object class + +=head1 API + +=head2 Class Methods + +=cut + +sub _type { + return 'SignsToStream'; +} + +1; --- a/Koha/SignsToStreams.pm +++ a/Koha/SignsToStreams.pm @@ -0,0 +1,59 @@ +package Koha::SignsToStreams; + +# Copyright 2016 Aleisha Amohia +# +# This file is part of Koha. +# +# Koha is free software; you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation; either version 3 of the License, or (at your option) any later +# version. +# +# Koha is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with Koha; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +use Modern::Perl; + +use Koha::Database; +use Koha::SignsToStream; + +use base qw( Koha::Objects ); + +=head1 NAME + +Koha::SignsToStreams - Koha SignsToStream object set class + +=head1 API + +=head2 Class Methods + +=cut + +=head3 type + +=cut + +sub _type { + return 'SignsToStream'; +} + +=head3 object_class + +=cut + +sub object_class { + return 'Koha::SignsToStream'; +} + +=head1 AUTHOR + +Aleisha Amohia + +=cut + +1; --