Bug 15451: Koha::CsvProfiles - Remove GetCsvProfile
[koha.git] / C4 / Csv.pm
index 7c8f824..2cd6430 100644 (file)
--- a/C4/Csv.pm
+++ b/C4/Csv.pm
@@ -31,36 +31,10 @@ use vars qw(@ISA @EXPORT);
 # only export API methods
 
 @EXPORT = qw(
-  &GetCsvProfile
-  &GetCsvProfileId
   &GetMarcFieldsForCsv
 );
 
 
-# Returns all informations about a given csv profile
-sub GetCsvProfile {
-    my ($id) = @_;
-    my $dbh = C4::Context->dbh;
-    my $query = "SELECT * FROM export_format WHERE export_format_id=?";
-
-    $sth = $dbh->prepare($query);
-    $sth->execute($id);
-
-    return ($sth->fetchrow_hashref);
-}
-
-# Returns id of csv profile about a given csv profile name
-sub GetCsvProfileId {
-    my ($name)  = @_;
-    my $dbh   = C4::Context->dbh;
-    my $query = "SELECT export_format_id FROM export_format WHERE profile=?";
-
-    $sth = $dbh->prepare($query);
-    $sth->execute($name);
-
-    return ( $sth->fetchrow );
-}
-
 # Returns fields to extract for the given csv profile
 sub GetMarcFieldsForCsv {