MT2116: Addons to the CSV export
[koha.git] / C4 / Csv.pm
index 292cd4e..a53fcb9 100644 (file)
--- a/C4/Csv.pm
+++ b/C4/Csv.pm
@@ -31,6 +31,7 @@ $VERSION = 3.00;
 
 @EXPORT = qw(
   &GetCsvProfiles
+  &GetCsvProfile
   &GetCsvProfilesLoop
   &GetMarcFieldsForCsv
 );
@@ -48,6 +49,18 @@ sub GetCsvProfiles {
 
 }
 
+# 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 fields to extract for the given csv profile
 sub GetMarcFieldsForCsv {