Bug 15451: Koha::CsvProfiles - Remove GetCsvProfile
[koha.git] / C4 / Csv.pm
index 275fb49..2cd6430 100644 (file)
--- a/C4/Csv.pm
+++ b/C4/Csv.pm
@@ -31,53 +31,10 @@ use vars qw(@ISA @EXPORT);
 # only export API methods
 
 @EXPORT = qw(
-  &GetCsvProfiles
-  &GetCsvProfile
-  &GetCsvProfileId
   &GetMarcFieldsForCsv
 );
 
 
-# Returns all informations about csv profiles
-sub GetCsvProfiles {
-    my ( $type ) = @_;
-    my $dbh = C4::Context->dbh;
-    my $query = "SELECT * FROM export_format";
-    if ( $type ) {
-        $query .= " WHERE type = ?";
-    }
-
-    $sth = $dbh->prepare($query);
-    $sth->execute( $type ? $type : () );
-
-    $sth->fetchall_arrayref({});
-
-}
-
-# 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 {