Bug 32162: DBIC schema
[srvgit] / Koha / MetadataRecord.pm
index 9899e16..6f0aa1f 100644 (file)
@@ -4,18 +4,18 @@ package Koha::MetadataRecord;
 #
 # 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 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.
+# 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.
+# You should have received a copy of the GNU General Public License
+# along with Koha; if not, see <http://www.gnu.org/licenses>.
 
 =head1 NAME
 
@@ -34,8 +34,7 @@ and authority) records in Koha.
 
 use Modern::Perl;
 
-use Carp;
-use C4::Biblio;
+use Carp qw( carp );
 use Koha::Util::MARC;
 
 use base qw(Class::Accessor);
@@ -109,30 +108,4 @@ sub createMergeHash {
     }
 }
 
-sub getKohaField {
-    my ($self, $kohafield) = @_;
-
-    if ($self->schema =~ m/marc/) {
-        my $frameworkcode = ""; # FIXME Why do we use the default framework?
-        my $mss = C4::Biblio::GetMarcSubfieldStructure( $frameworkcode );
-        my $tagfield = $mss->{$kohafield};
-
-        return '' if ref($tagfield) ne 'HASH';
-
-        my ($tag, $subfield) = ( $tagfield->{tagfield}, $tagfield->{tagsubfield} );
-        my @kohafield;
-        foreach my $field ( $self->record->field($tag) ) {
-            if ( $field->tag() < 10 ) {
-                push @kohafield, $field->data();
-            } else {
-                foreach my $contents ( $field->subfield($subfield) ) {
-                    push @kohafield, $contents;
-                }
-            }
-        }
-
-        return join ' | ', @kohafield;
-    }
-}
-
 1;