Changed license type to GPLv3 in top of files
[fa-stable.git] / gl / includes / db / gl_db_currencies.inc
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL, 
5         as published by the Free Software Foundation, either version 3 
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12 //---------------------------------------------------------------------------------------------
13
14 function update_currency($curr_abrev, $symbol, $currency, $country, $hundreds_name)
15 {
16         $sql = "UPDATE ".TB_PREF."currencies SET currency=".db_escape($currency).", curr_symbol='$symbol',
17                 country=".db_escape($country).", hundreds_name=".db_escape($hundreds_name)." WHERE curr_abrev = '$curr_abrev'";
18
19         db_query($sql, "could not update currency for $curr_abrev");
20 }
21
22 //---------------------------------------------------------------------------------------------
23
24 function add_currency($curr_abrev, $symbol, $currency, $country, $hundreds_name)
25 {
26         $sql = "INSERT INTO ".TB_PREF."currencies (curr_abrev, curr_symbol, currency, country, hundreds_name)
27                 VALUES (".db_escape($curr_abrev).", '$symbol', ".db_escape($currency).", ".db_escape($country).", ".db_escape($hundreds_name).")";
28
29         db_query($sql, "could not add currency for $curr_abrev");
30 }
31
32 //---------------------------------------------------------------------------------------------
33
34 function delete_currency($curr_code)
35 {
36         $sql="DELETE FROM ".TB_PREF."currencies WHERE curr_abrev='$curr_code'";
37         db_query($sql, "could not delete currency       $curr_code");
38
39         $sql="DELETE FROM ".TB_PREF."exchange_rates WHERE curr_code='$curr_code'";
40         db_query($sql, "could not delete exchange rates for currency $curr_code");
41 }
42
43 //---------------------------------------------------------------------------------------------
44
45 function get_currency($curr_code)
46 {
47         $sql = "SELECT * FROM ".TB_PREF."currencies WHERE curr_abrev='$curr_code'";
48         $result = db_query($sql, "could not get currency $curr_code");
49
50         $row = db_fetch($result);
51         return $row;
52 }
53
54 //---------------------------------------------------------------------------------------------
55
56 function get_currencies()
57 {
58         $sql = "SELECT * FROM ".TB_PREF."currencies";
59         return db_query($sql, "could not get currencies");
60 }
61
62 //---------------------------------------------------------------------------------------------
63
64 ?>