Made to work with magic quotes on or off.
[openemr.git] / interface / vektis / vk_main.php
blob51ee1157d2b811556d5b47d8a52c99285317f660
1 <?php
2 /**
3 * VEKTIS
5 * @author Cristian NAVALICI
6 * @version 1.0 feb 2008
8 */
10 require_once("../globals.php");
11 require_once("$srcdir/acl.inc");
13 // Check authorization.
14 $thisauth = acl_check('admin', 'vektis');
15 if (!$thisauth) die("Not authorized.");
18 <html>
20 <head>
22 <link rel=stylesheet href='<?php echo $css_header ?>' type='text/css'>
23 <title>Vektis Administration</title>
24 </head>
26 <body <?php echo $top_bg_line;?>>
27 <p>Today: <?php echo date('d-m-Y'); ?></p>
28 <p> Number of DBCs ready for Vektis (ready/to be checked): <?php echo vk_number_ready(1) .'/'. vk_number_ready(3); ?></p>
29 <p><a href="vk_list.php" target="Main" >List the ready DBC's</a></p>
30 <p><a href="vk_generate.php" target="Main" onClick="return confirm('Are you sure?');" >Generate the Vektis File</a></p>
31 <p><a href="vk_validate.php" target="Main">Vektis Validation</a></p>
32 <p><a href="vk_resubmit.php" target="Main">Resubmitted DBC administration</a></p>
34 </body>
35 </html>