- modules/fotolab updated imagej to current version & some cod fixes to make it work
[care2x.git] / Care2007 / modules / insurance_co / insurance_co_manage.php
blob00d7f4236128bfc156d01abf657768894e42fa15
1 <?php
2 error_reporting(E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR);
3 require('./roots.php');
4 require($root_path.'include/inc_environment_global.php');
5 /**
6 * CARE2X Integrated Hospital Information System Deployment 2.2 - 2006-07-10
7 * GNU General Public License
8 * Copyright 2002,2003,2004,2005,2006 Elpidio Latorilla
9 * elpidio@care2x.org,
11 * See the file "copy_notice.txt" for the licence notice
13 define('LANG_FILE','finance.php');
14 $local_user='aufnahme_user';
15 require_once($root_path.'include/inc_front_chain_lang.php');
17 $breakfile=$root_path."main/spediens.php".URL_APPEND;
19 # Start Smarty templating here
20 /**
21 * LOAD Smarty
23 # Note: it is advisable to load this after the inc_front_chain_lang.php so
24 # that the smarty script can use the user configured template theme
26 require_once($root_path.'gui/smarty_template/smarty_care.class.php');
27 $smarty = new smarty_care('system_admin');
29 # Title in toolbar
30 $smarty->assign('sToolbarTitle',"$LDInsuranceCo :: $LDManager");
32 # href for help button
33 $smarty->assign('pbHelp',"javascript:gethelp('insurance_manage.php','main')");
35 # href for close button
36 $smarty->assign('breakfile',$breakfile);
38 # Window bar title
39 $smarty->assign('sWindowTitle',"$LDInsuranceCo :: $LDManager");
41 # Buffer page output
43 ob_start();
46 <p><br>
47 <table border=0 cellpadding=5 >
48 <tr>
49 <td></td>
50 <td valign=top><FONT face="Verdana,Helvetica,Arial" size=2 >
51 <a href="insurance_co_new.php<?php echo URL_APPEND; ?>"><b><?php echo $LDNewData; ?></b></a><br>
52 &nbsp;<?php echo $LDNewDataTxt ?>
53 <p>
54 <a href="insurance_co_list.php<?php echo URL_APPEND; ?>"><b><?php echo $LDListAll ?></b></a><br>
55 &nbsp;<?php echo $LDListAllTxt ?>
56 <p>
57 <a href="insurance_co_search.php<?php echo URL_APPEND; ?>"><b><?php echo $LDSearch ?></b></a><br>
58 &nbsp;<?php echo $LDSearchTxt ?>
59 <p>
60 </td>
61 <td></td>
62 </tr>
63 </table>
65 </FONT>
66 <p>
67 <ul>
68 <a href="<?php echo $breakfile ?>"><img <?php echo createLDImgSrc($root_path,'close2.gif','0') ?> border="0"></a>
69 </ul>
71 <?php
73 $sTemp = ob_get_contents();
74 ob_end_clean();
76 # Assign page output to the mainframe template
78 $smarty->assign('sMainFrameBlockData',$sTemp);
79 /**
80 * show Template
82 $smarty->display('common/mainframe.tpl');