-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
556 lines (476 loc) · 14.4 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
<?php
/*
* Script: index.php
* Main controller file for Simple Invoices
*
* License:
* GPL v3 or above
*/
//minor change to test github emails - test
//stop browsing to files directly - all viewing to be handled by index.php
//if browse not defined then the page will exit
define("BROWSE","browse");
/*
* The include configs and requirements stuff section - start
*/
/*
* Load stuff required before init.php
*/
require_once("./include/init_pre.php");
$module = isset($_GET['module']) ? filenameEscape($_GET['module']) : null;
$view = isset($_GET['view']) ? filenameEscape($_GET['view']) : null;
$action = isset($_GET['case']) ? filenameEscape($_GET['case']) : null;
require_once("./include/init.php");
/*
GetCustomPath: override template or module with custom one if it exists, else return default path if it exists
---------------------------------------------
@name: name or dir/name of the module or template (without extension)
@mode: template or module
*/
function GetCustomPath($name,$mode='template'){
$my_custom_path="./custom/";
$use_custom=1;
if($mode=='template'){
if($use_custom and file_exists("{$my_custom_path}default_template/{$name}.tpl")){
$out=".{$my_custom_path}default_template/{$name}.tpl";
}
elseif(file_exists("./templates/default/{$name}.tpl")){
$out="../templates/default/{$name}.tpl";
}
}
if($mode=='module'){
if($use_custom and file_exists("{$my_custom_path}modules/{$name}.php")){
$out="{$my_custom_path}modules/{$name}.php";
}
elseif(file_exists("./modules/{$name}.php")){
$out="./modules/{$name}.php";
}
}
return $out;
}
foreach($config->extension as $extension)
{
/*
* If extension is enabled then continue and include the requested file for that extension if it exists
*/
if($extension->enabled == "1")
{
//echo "Enabled:".$value['name']."<br><br>";
if(file_exists("./extensions/$extension->name/include/init.php"))
{
require_once("./extensions/$extension->name/include/init.php");
}
}
}
/*
* The include configs and requirements stuff section - end
*/
$smarty -> assign("config",$config); // to toggle the login / logout button visibility in the menu
$smarty -> assign("module",$module);
$smarty -> assign("view",$view);
$smarty -> assign("siUrl",$siUrl);//used for template css
$smarty -> assign("LANG",$LANG);
//For Making easy enabled pop-menus (see biller)
$smarty -> assign("enabled",array($LANG['disabled'],$LANG['enabled']));
/*
* Menu - hide or show menu
*/
$menu = isset($menu)?$menu: true;
/*
* File - set which page will be displayed as the start page
*/
//if auth - make sure is valid session else skip
// Check for any unapplied SQL patches when going home
//TODO - redo this code
if (($module == "options") && ($view == "database_sqlpatches")) {
include_once('./include/sql_patches.php');
donePatches();
} else {
//check db structure - if only structure and no fields then prompt for imports
// 1 import essential data
$skip_db_patches = false;
//$install_tables_exists = checkTableExists(TB_PREFIX."biller");
if ( $install_tables_exists == false )
{
$module="install";
//$view="index";
$view == "structure" ? $view ="structure" : $view="index";
//do installer
$skip_db_patches = true;
}
if ( ($install_tables_exists == true) AND ($install_data_exists == false) )
{
$module = "install";
$view == "essential" ? $view ="essential" : $view="structure";
//$view = "essential";
//do installer
$skip_db_patches = true;
}
//count sql_patches
// if 0 run import essential data
// 2 import sample data
//echo $skip_db_patches;
//if auth on must login before upgrade
if ($skip_db_patches == false)
{
if ( ($config->authentication->enabled == 1 AND isset($auth_session->id)) OR ($config->authentication->enabled == 0) )
{
include_once('./include/sql_patches.php');
if (getNumberOfPatches() > 0 ) {
$view = "database_sqlpatches";
$module = "options";
if($action == "run") {
runPatches();
} else {
listPatches();
}
$menu = false;
} else {
//If no invoices in db then show home page as default - else show Manage Invoices page
if ($module==null)
{
$invoiceobj = new invoice();
if ( $invoiceobj->are_there_any() > "0" )
{
$module = "invoices" ;
$view = "manage";
} else {
$module = "index" ;
$view = "index";
}
unset($invoiceobj);
}
}
}
}
}
/*
* dont include the header if requested file is an invoice template - for print preview etc.. header is not needed
*/
if (($module == "invoices" ) && (strstr($view,"template"))) {
/*
* If extension is enabled load the extension php file for the module
* Note: this system is probably slow - if you got a better method for handling extensions let me know
*/
$extensionInvoiceTemplateFile = 0;
foreach($config->extension as $extension)
{
/*
* If extension is enabled then continue and include the requested file for that extension if it exists
*/
if($extension->enabled == "1")
{
//echo "Enabled:".$value['name']."<br><br>";
if(file_exists("./extensions/$extension->name/modules/invoices/template.php")) {
include_once("./extensions/$extension->name/modules/invoices/template.php");
$extensionInvoiceTemplateFile++;
}
}
}
/*
* If no extension php file for requested file load the normal php file if it exists
*/
if( ($extensionInvoiceTemplateFile == 0) AND ($my_path=GetCustomPath("invoices/template",'module') ) )
{
/* (soif) This /modules/invoices/template.php is empty : Should we really keep it? */
include_once($my_path);
}
exit(0);
}
/*
* xml or ajax page requeset - start
*/
if( strstr($module,"api") OR (strstr($view,"xml") OR (strstr($view,"ajax")) ) )
{
$extensionXml = 0;
foreach($config->extension as $extension)
{
/*
* If extension is enabled then continue and include the requested file for that extension if it exists
*/
if($extension->enabled == "1")
{
if(file_exists("./extensions/$extension->name/modules/$module/$view.php"))
{
include("./extensions/$extension->name/modules/$module/$view.php");
$extensionXml++;
}
}
}
/*
* If no extension php file for requested file load the normal php file if it exists
*/
if($extensionXml == 0 and $my_path=GetCustomPath("$module/$view",'module')){
include($my_path);
}
exit(0);
}
/*
* xml or ajax page request - end
*/
$file= "$module/$view";
/*
* Prep the page - load the header stuff - start
*/
// To remove the js error due to multiple document.ready.function()
// in jquery.datePicker.js, jquery.autocomplete.conf.js and jquery.accordian.js
// without instances in manage pages - Ap.Muthu
/*
* TODO: fix the javascript or move datapicker to extjs to fix this hack - not nice
*/
/*
* If extension is enabled load its javascript files - start
* Note: this system is probably slow - if you got a better method for handling extensions let me know
*/
$extension_jquery_files = "";
foreach($config->extension as $extension)
{
/*
* If extension is enabled then continue and include the requested file for that extension if it exists
*/
if($extension->enabled == "1")
{
if(file_exists("./extensions/$extension->name/include/jquery/$extension->name.jquery.ext.js")) {
$extension_jquery_files .= "<script type=\"text/javascript\" src=\"./extensions/$extension->name/include/jquery/$extension->name.jquery.ext.js\"></script>";
}
}
}
$smarty -> assign("extension_jquery_files",$extension_jquery_files);
/*
* If extension is enabled load its javascript files - end
*/
/*
* Header - start
*/
if( !in_array($module."_".$view, $early_exit) )
{
$extensionHeader = 0;
foreach($config->extension as $extension)
{
/*
* If extension is enabled then continue and include the requested file for that extension if it exists
*/
if($extension->enabled == "1")
{
if(file_exists("./extensions/$extension->name/templates/default/header.tpl"))
{
$smarty -> $smarty_output("../extensions/$extension->name/templates/default/header.tpl");
$extensionHeader++;
}
}
}
/*
* If no extension php file for requested file load the normal template file if it exists
*/
if($extensionHeader == 0)
{
$smarty -> $smarty_output(GetCustomPath('header'));
}
}
/*
* Prep the page - load the header stuff - end
*/
/*
* Include the php file for the requested page section - start
*/
/*
* If extension is enabled load the extension php file for the module
* Note: this system is probably slow - if you got a better method for handling extensions let me know
*/
$extensionPHPFile = 0;
foreach($config->extension as $extension)
{
/*
* If extension is enabled then continue and include the requested file for that extension if it exists
*/
if($extension->enabled == "1")
{
//echo "Enabled:".$value['name']."<br><br>";
if(file_exists("./extensions/$extension->name/modules/$module/$view.php")) {
include_once("./extensions/$extension->name/modules/$module/$view.php");
$extensionPHPFile++;
}
}
}
/*
* If no extension php file for requested file load the normal php file if it exists
*/
if( ($extensionPHPFile == 0) and $my_path=GetCustomPath("$module/$view",'module') ){
include($my_path);
}
/*
* Include the php file for the requested page section - end
*/
if($module == "export" OR $view == "export" OR $module == "api")
{
exit(0);
}
/*
* If extension is enabled load its post load javascript files - start
* By Post load - i mean post of the .php so that it can used info from the .php in the javascript
* Note: this system is probably slow - if you got a better method for handling extensions let me know
*/
$extensionPostLoadJquery = 0;
foreach($config->extension as $extension)
{
/*
* If extension is enabled then continue and include the requested file for that extension if it exists
*/
if($extension->enabled == "1")
{
if(file_exists("./extensions/$extension->name/include/jquery/$extension->name.post_load.jquery.ext.js.tpl")) {
$smarty -> $smarty_output("../extensions/$extension->name/include/jquery/$extension->name.post_load.jquery.ext.js.tpl");
}
}
}
/*
* If no extension php file for requested file load the normal php file if it exists
* Don't load it in the authentication module. It's not needed! Generates wrong HTML code.
*/
if($extensionPostLoadJquery == 0 AND $module !='auth')
{
$smarty -> $smarty_output("../include/jquery/post_load.jquery.ext.js.tpl");
}
/*
* If extension is enabled load its javascript files - end
*/
/*
* Menu : If extension has custom menu use it else use default - start
*/
if($menu == "true")
{
$extensionMenu = 0;
foreach($config->extension as $extension)
{
/*
* If extension is enabled then continue and include the requested file for that extension if it exists
*/
if($extension->enabled == "1")
{
if(file_exists("./extensions/$extension->name/templates/default/menu.tpl"))
{
$smarty -> $smarty_output("../extensions/$extension->name/templates/default/menu.tpl");
$extensionMenu++;
}
}
}
/*
* If no extension php file for requested file load the normal php file if it exists
*/
if($extensionMenu == "0")
{
$smarty -> $smarty_output(GetCustomPath('menu'));
}
}
/*
* Menu : If extension has custom menu use it else use default - end
*/
/*
* Main : If extension has custom layout use it else use default - start
*/
if( !in_array($module."_".$view, $early_exit) )
{
$extensionMain = 0;
foreach($config->extension as $extension)
{
/*
* If extension is enabled then continue and include the requested file for that extension if it exists
*/
if($extension->enabled == "1")
{
if(file_exists("./extensions/$extension->name/templates/default/main.tpl"))
{
$smarty -> $smarty_output("../extensions/$extension->name/templates/default/main.tpl");
$extensionMain++;
}
}
}
/*
* If no extension php file for requested file load the normal php file if it exists
*/
if($extensionMain == "0")
{
$smarty -> $smarty_output(GetCustomPath('main'));
}
}
/*
* Main : If extension has custom menu use it else use default - end
*/
/*
* Include the smarty template for the requested page section - start
*/
/*
* If no extensions template is applicable then show the default one
* use the $extensionTemplates variable to count the number of applicable extensions template
* --if = 0 after checking all extensions then show default
*/
$extensionTemplates = 0;
$my_tpl_path='';
foreach($config->extension as $extension)
{
/*
* If extension is enabled then continue and include the requested file for that extension if it exists
*/
if($extension->enabled == "1")
{
if(file_exists("./extensions/$extension->name/templates/default/$module/$view.tpl"))
{
$path = "../extensions/$extension->name/templates/default/$module/";
$my_tpl_path="../extensions/{$extension->name}/templates/default/$module/$view.tpl";
$extensionTemplates++;
}
}
}
/*
* If no application templates found then show default template
* TODO Note: if more than one extension has got a template for the requested file than thats trouble :(
* - we really need a better extensions system
*/
if( $extensionTemplates == 0 )
{
if($my_tpl_path=GetCustomPath("$module/$view")){
$path = dirname($my_tpl_path).'/';
$extensionTemplates++;
}
}
$smarty->assign("path",$path);
$smarty -> $smarty_output($my_tpl_path);
// If no smarty template - add message - onyl uncomment for dev - commented out for release
if ($extensionTemplates == 0 )
{
error_log("NOTEMPLATE!!!");
}
/*
* Include the template for the requested page section - end
*/
/*
* Footer - start
*/
if( !in_array($module."_".$view, $early_exit) )
{
$extensionFooter = 0;
foreach($config->extension as $extension)
{
/*
* If extension is enabled then continue and include the requested file for that extension if it exists
*/
if($extension->enabled == "1")
{
if(file_exists("./extensions/$extension->name/templates/default/footer.tpl"))
{
$smarty -> $smarty_output("../extensions/$extension->name/templates/default/footer.tpl");
$extensionFooter++;
}
}
}
/*
* If no extension php file for requested file load the normal php file if it exists
*/
if($extensionFooter == 0)
{
$smarty -> $smarty_output(GetCustomPath('footer'));
}
}
/*
* Footer - end
*/