Message styles moved to theme css.
[fa-stable.git] / includes / errors.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 $messages = array(); // container for system messages
13 $before_box = ''; // temporary container for output html data before error box
14
15 //-----------------------------------------------------------------------------
16 //    Error handler - collects all php/user messages for
17 //    display in message box.
18
19 function error_handler($errno, $errstr, $file, $line) {
20     global $messages;
21
22         // error_reporting==0 when messages are set off with @ 
23         if ($errno & error_reporting()) {
24                 $messages[] = array($errno, $errstr, $file, $line);
25         }
26     return true;
27 }
28 //------------------------------------------------------------------------------
29 //      Formats system messages before insert them into message <div>
30 // FIX center is unused now
31 function fmt_errors($center=false) {
32     global $messages;
33   
34   $msg_class = array(
35         E_USER_ERROR => 'err_msg',
36         E_USER_WARNING =>'warn_msg', 
37         E_USER_NOTICE => 'note_msg');
38
39   $type = E_USER_NOTICE;
40   $content = '';
41   if (count($messages)) {
42         foreach($messages as $msg) {
43                 if ($msg[0]>$type) continue;
44
45                 if ($msg[0]<$type) { 
46                         if ($msg[0] == E_USER_WARNING) {
47                                 $type = E_USER_WARNING; // user warnings 
48                                 $content = '';                  // clean notices when we have errors
49                         } else  {
50                                 $type = E_USER_ERROR;   // php or user errors 
51                                 if($type == E_USER_WARNING)
52                                         $content = '';                  // clean other messages
53                         }
54                 }
55             $str = $msg[1];
56                 $class = $msg_class[$type];
57                 if ($msg[0] < E_USER_ERROR && $msg[2] != null)
58                   $str .= ' '._('in file').': '.$msg[2].' '._('at line ').$msg[3];
59                 $content .= "<div class='$class'>$str</div><br>";
60         }               
61   }
62   return $content;
63 }
64 //-----------------------------------------------------------------------------
65 // Error box <div> element.
66 //
67 function error_box() {
68     global $before_box;
69     
70     echo "<div id='msgbox'>";
71     $before_box = ob_get_clean(); // save html content before error box 
72 // Necessary restart instead of get_contents/clean calls due to a bug in php 4.3.2
73         register_shutdown_function('ob_end_flush');
74     ob_start('output_html');
75     echo "</div>";
76 }
77
78 function display_db_error($msg, $sql_statement=null, $exit=true)
79 {
80         global $db, $debug;
81         $db_error = db_error_no();
82         
83         $str = "<span class='errortext'><b>" . _("DATABASE ERROR :") . "</b> $msg</span><br>";
84         
85         if ($db_error != 0) 
86         {
87                 $str .= "error code : " . $db_error . "<br>";
88                 $str .= "error message : " . db_error_msg($db) . "<br>";
89         }
90         
91         if ($debug == 1) 
92         {
93                 $str .= "sql that failed was : " . $sql_statement . "<br>";
94         }
95         
96         $str .= "<br><br>";
97
98         trigger_error($str, E_USER_ERROR);
99
100         if ($exit)
101                 exit;
102 }
103
104 function frindly_db_error($db_error)
105 {
106         global $db_duplicate_error_code;
107         
108         if ($db_error == $db_duplicate_error_code) 
109         {
110                 display_error(_("The entered information is a duplicate. Please go back and enter different values."));
111                 return true;
112         }
113         
114         return false;
115 }
116
117 function check_db_error($msg, $sql_statement, $exit_if_error=true, $rollback_if_error=true)
118 {
119         global $db;
120         $db_error = db_error_no();
121         
122         if ($db_error != 0) 
123         {
124                 
125                 if (!frindly_db_error($db_error))
126                         display_db_error($msg, $sql_statement, false);
127                 
128                 if ($rollback_if_error) 
129                 {
130                   $rollback_result = db_query("rollback","could not rollback");                 
131                 }
132                 
133                 if ($exit_if_error) 
134                 {
135                         echo "<br><br>";
136                         exit;
137                 }
138         }
139         return $db_error;               
140 }
141
142 ?>