aboutsummaryrefslogtreecommitdiff
path: root/apps/audit.php
blob: 28237b0a41409ec66163938c365434c2ced0e01d (plain)
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
<?php
/**
 * Cinisis - Isis db reading tool.
 */

// Import requisites.
require_once '../index.php';

// Draw the document.
$display = new CinisisDisplayHelper('Database audit');

// Get a db instance.
$isis = new IsisAudit();

// Setup database and entry number.
if ($isis) {
  // Run audit.
  $result = $isis->run();

  // Format output.
  echo "<pre>\n";
  print_r($result);
  echo '</pre>';
}

$display->footer();