New files from unstable branch
[fa-stable.git] / admin / db / attachments_db.inc
diff --git a/admin/db/attachments_db.inc b/admin/db/attachments_db.inc
new file mode 100644 (file)
index 0000000..6ce9960
--- /dev/null
@@ -0,0 +1,82 @@
+<?php
+/**********************************************************************
+    Copyright (C) FrontAccounting, LLC.
+       Released under the terms of the GNU General Public License, GPL, 
+       as published by the Free Software Foundation, either version 3 
+       of the License, or (at your option) any later version.
+    This program 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 License here <http://www.gnu.org/licenses/gpl-3.0.html>.
+***********************************************************************/
+
+//----------------------------------------------------------------------------------------
+
+function add_attachment($filterType, $trans_no, $description,
+       $filename, $unique_name, $filesize, $filetype)
+{
+       $date = date2sql(Today());
+       $sql = "INSERT INTO ".TB_PREF."attachments (type_no, trans_no, description, filename, unique_name,
+               filesize, filetype, tran_date) VALUES (".db_escape($filterType).","
+               .db_escape($trans_no).",".db_escape($description).", "
+               .db_escape($filename).", ".db_escape($unique_name).", ".db_escape($filesize)
+               .", ".db_escape($filetype).", '$date')";
+       db_query($sql, "Attachment could not be inserted");             
+}
+//----------------------------------------------------------------------------------------
+
+function update_attachment($selected_id, $filterType, $trans_no, $description,
+       $filename, $unique_name, $filesize, $filetype)
+{
+       $date = date2sql(Today());
+       $sql = "UPDATE ".TB_PREF."attachments SET
+               type_no=".db_escape($filterType).",
+               trans_no=".db_escape($trans_no).",
+               description=".db_escape($description).", ";
+       if ($filename != "")
+       {
+               $sql .= "filename=".db_escape($filename).",
+               unique_name=".db_escape($unique_name).",
+               filesize=".db_escape($filesize).",
+               filetype=".db_escape($filetype).",";
+       }       
+       $sql .= "tran_date='$date' WHERE id=".db_escape($selected_id);
+       db_query($sql, "Attachment could not be updated");              
+}
+
+//----------------------------------------------------------------------------------------
+
+function delete_attachment($id)
+{
+       $sql = "DELETE FROM ".TB_PREF."attachments WHERE id = ".db_escape($id);
+       db_query($sql, "Could not delete attachment");
+}
+//----------------------------------------------------------------------------------------
+
+function get_attached_documents($type)
+{
+       $sql = "SELECT * FROM ".TB_PREF."attachments WHERE type_no=".db_escape($type)
+       ." ORDER BY trans_no";
+       return db_query($sql, "Could not retrieve attachments");
+}
+
+function get_attachment($id)
+{
+       $sql = "SELECT * FROM ".TB_PREF."attachments WHERE id=".db_escape($id);
+       $result = db_query($sql, "Could not retrieve attachments");
+       return db_fetch($result);
+}
+
+function has_attachment($type, $id)
+{
+       $sql = "SELECT DISTINCT * FROM ".TB_PREF."attachments WHERE type_no=".db_escape($type)." AND trans_no=".db_escape($id);
+       $result = db_query($sql, "Could not retrieve attachments");
+       $myrow = db_fetch($result);
+       if ($myrow === false)
+               return 0;
+       else
+               return $myrow['id'];
+}
+
+
+?>
\ No newline at end of file