Integration of hooks provided by extensions.
[fa-stable.git] / includes / hooks.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 // FrontAccounting extension modules integration.
14 // This file is included in session.inc even before session is started,
15 // and includes hooks.php connector files from all installed extensions.
16 // To make hooks active install_hooks() have to be called after interface
17 // language is set.
18 //
19 // To find how various hooks are processed look into respective hook_* functions below.
20 //
21 class hooks {
22         var $module_name; // extension module name.
23
24         // 
25         // Helper for updating databases with extension scheme
26         //
27         // $comp can be company number, -1 for all, 
28         // $updates - table of filename => array(table, field, property)
29         // $check_only - don't update database, check table/field/property existence only
30         //
31         function update_databases($comp, $updates, $check_only=false)
32         {
33                 global $db_connections, $path_to_root;
34         
35                 if ($comp == -1) 
36                         $conn = $db_connections;
37                 else
38                         $conn = array( $comp => $db_connections[$comp]);
39                 $result = true;
40
41                 foreach($conn as $comp => $con) {
42                         set_global_connection($comp);
43                         foreach($updates as $file => $update) {
44                                 $table = @$update[0];
45                                 $field = @$update[1];
46                                 $properties = @$update[2];
47
48                                 $ok = check_table($con['tbpref'], $table, $field, $properties) == 0;
49
50                                 if (!$check_only && !$ok) {
51                                         $ok = db_import($path_to_root.'/modules/'.$this->module_name.'/sql/'.$file,
52                                                 $con);
53                                 }
54                                 $result &= $ok;
55                                 if (!$result)
56                                         break;
57                         }
58                         db_close();
59                         if (!$result)
60                                 break;
61                 }
62                 set_global_connection(0); // return to siteadmin account
63
64                 return $result;
65         }
66         //
67         //      Install additional tabs provided by extension
68         //
69         function install_tabs($app) {
70 //              set_ext_domain('modules/example');        // set text domain for gettext
71 //              $app->add_application(new example_class); // add menu tab defined by example_class
72 //              set_ext_domain();
73         }
74         //
75         //      Install additonal menu options provided by extension
76         //
77         function install_options($app) {
78 //              global $path_to_root;
79 //              set_ext_domain('modules/example');
80 //              switch($app->id) {
81 //                      case 'orders':
82 //                              $app->add_rapp_function( 0, _("&Example option"), 
83 //                                      $path_to_root.'/modules/example/example.php?', 'SA_OPEN');
84 //              }
85 //              set_ext_domain();
86         }
87         //
88         // Price in words. $doc_type is set to document type and can be used to suppress 
89         // price in words printing for selected document types.
90         // Used instead of built in simple english price_in_words() function.
91         //
92         //      Returns: amount in words as string.
93
94         function price_in_words($amount, $doc_type)
95         {
96         }
97
98         //
99         // Exchange rate currency $curr as on date $date.
100         // Keep in mind FA has internally implemented 3 exrate providers
101         // If any of them supports your currency, you can simply use function below
102         // with apprioprate provider set, otherwise implement your own.
103         // Returns: $curr value in home currency units as a real number.
104
105         function retrieve_exrate($curr, $date)
106         {
107 //              $provider = 'ECB'; // 'ECB', 'YAHOO' or 'GOOGLE'
108 //              return get_extern_rate($curr, $provider, $date);
109                 return null;
110         }
111
112         // Generic function called at the end of Tax Report (report 709)
113         // Can be used e.g. for special database updates on every report printing
114         // or to print special tax report footer 
115         //
116         // Returns: nothing
117         function tax_report_done()
118         {
119         }
120         // Following database transaction hooks akcepts array of parameters:
121         // 'cart' => transaction data
122         // 'trans_type' => transaction type
123
124         function db_prewrite(&$cart, $trans_type)
125         {
126                 return true;
127         }
128
129         function db_postwrite(&$cart, $trans_type)
130         {
131                 return true;
132         }
133
134         function db_prevoid($trans_type, $trans_no)
135         {
136                 return true;
137         }
138 }
139 //
140 // include all extensions hook files.
141 //
142 foreach ($installed_extensions as $ext)
143 {
144         @include_once($path_to_root.'/'.$ext['path'].'/hooks.php');
145 }
146
147 /*
148         Installs hooks provided by extension modules
149 */
150 function install_hooks() {
151         global $path_to_root, $Hooks, $installed_extensions;
152
153         $Hooks = array();
154         
155         // include current language related $Hooks object if locale file exists
156         if (file_exists($path_to_root . "/lang/".$_SESSION['language']->code."/locale.inc"))
157         {
158                 include_once($path_to_root . "/lang/".$_SESSION['language']->code."/locale.inc");
159                 $code = $_SESSION['language']->code;
160                 $hook_class = 'hooks_'.$code;
161                 $Hooks[$code] = new $hook_class;
162                 unset($code, $hook_class);
163         }
164         // install hooks provided by active extensions
165 // include($path_to_root.'/installed_extensions.php');
166         foreach($installed_extensions as $ext) {
167 //                      @include($path_to_root.'/'.$ext['path'].'/hooks.php');
168                         $hook_class = 'hooks_'.$ext['package'];
169                         if ($ext['active'] && class_exists($hook_class)) {
170                                 $Hooks[$ext['package']] = new $hook_class;
171                         }
172         }
173 }
174 /*
175         Non active hooks are not included in $Hooks array, so we can use special function to 
176         activate.
177 */
178 function activate_hooks($ext, $comp) {
179         global $Hooks;
180         
181         $hooks = @$Hooks[$ext];
182         if (!$hooks) {
183                 $hookclass = 'hooks_'.$ext;
184                 if (class_exists($hookclass))
185                         $hooks = new $hookclass;
186                 else
187                         return true; // extension does not have hooks file
188         }
189         if (!$hooks)
190                 return false;
191         else
192                 return $hooks->activate_extension($comp, false);
193 }
194 /*
195         Calls hook $method defined in extension $ext (if any)
196 */
197 function hook_invoke($ext, $method, &$data, $opts=null) {
198
199         global $Hooks;
200
201         if (isset($Hooks[$ext]) && method_exists($Hooks[$ext], $method)) {
202                 return $Hooks[$ext]->$method($data, $opts);
203         } else
204                 return null;
205 }
206
207 /*
208         Calls hook $methods defined in all extensions (if any)
209 */
210 function hook_invoke_all($method, &$data, $opts=null) {
211
212         global $Hooks;
213         
214         $result = array();
215         foreach($Hooks as $ext => $hook)
216                 if (method_exists($hook, $method)) {
217                         $result = $hook->$method($data, $opts);
218                         if (isset($result) && is_array($result)) {
219                                 $return = array_merge_recursive($return, $result);
220                         } else if (isset($result)) {
221                                 $return[] = $result;
222                                 }
223                 }
224         return $result;
225 }
226 /*
227         Returns first non-null result returned from hook.
228 */
229 function hook_invoke_first($method, &$data, $opts=null) {
230
231         global $Hooks;
232         
233         foreach($Hooks as $ext => $hook) {
234                 if (method_exists($hook, $method)) {
235                         $result = $hook->$method($data, $opts);
236                         if (isset($result))
237                                 return $result;
238                 }
239         }
240         return null;
241 }
242 /*
243         Returns result of last hook installed. Helps implement hooks overriding by 
244         extensions installed later.
245         
246 */
247 function hook_invoke_last($method, &$data, $opts=null) {
248
249         global $Hooks;
250         
251         $found = false;
252         foreach($Hooks as $ext => $hook) {
253                 if (method_exists($hook, $method)) {
254                         $found = $ext;
255                 }
256         }
257         return $found ? $Hooks[$found]->$method($data, $opts) : null;
258 }
259 //------------------------------------------------------------------------------------------
260 //      Database transaction hooks.
261 //      $type - type of transaction (simplifies cart processing)
262 //      $cart - transaction cart
263 //      $args is optional array of parameters
264 //
265 // For FA 2.3 prewrite, postwrite and prevoid hooks are implemented for following transaction types:
266 //
267 // ST_BANKPAYMENT, ST_BANKDEPOSIT, ST_BANKTRANSFER,
268 // ST_SALESORDER, ST_SALESQUOTE, ST_SALESINVOICE, ST_CUSTCREDIT, ST_CUSTPAYMENT, ST_CUSTDELIVERY,
269 // ST_LOCTRANSFER, ST_INVADJUST, 
270 // ST_PURCHORDER, ST_SUPPINVOICE, ST_SUPPCREDIT, ST_SUPPAYMENT, ST_SUPPRECEIVE,
271 // ST_WORKORDER, ST_MANUISSUE, ST_MANURECEIVE, 
272
273 /*
274         Invoked after transaction has been read from database to cart.
275         Not implemented yet.
276 */
277 //function hook_db_postread(&$cart, $type)
278 //{
279 //      hook_invoke_all('db_postread', $cart, $type);
280 //}
281
282 /*
283         Invoked before transaction is written to database.
284 */
285 function hook_db_prewrite(&$cart, $type)
286 {
287         return hook_invoke_all('db_prewrite', $cart, $type);
288 }
289
290 /*
291         Invoked after transaction has been written to database.
292 */
293 function hook_db_postwrite(&$cart, $type)
294 {
295         return hook_invoke_all('db_postwrite', $cart, $type);
296 }
297 /*
298         Invoked before transaction is voided
299 */
300 function hook_db_prevoid($type, $type_no)
301 {
302         return hook_invoke_all('db_prevoid', $type, $type_no);
303 }
304
305 //-------------------------------------------------------------------------------------------
306 //
307 //      Various hooks
308 //
309 //      Alternative exchange rates feeds.
310 //
311 function hook_retrieve_exrate($currency, $date)
312 {
313         return hook_invoke_last('retrieve_exrate', $currency, $date);
314 }
315 //
316 // Generic function called at the end of Tax Report (report 709)
317 //
318 function hook_tax_report_done()
319 {
320         return hook_invoke_all('tax_report_done', $dummy);
321 }
322 //
323 //      Amount in words displayed on various documents (especially sales invoice)
324 //
325 function hook_price_in_words($amount, $document)
326 {
327         return hook_invoke_last('price_in_words', $amount, $document);
328 }