aboutsummaryrefslogtreecommitdiff
path: root/tests/repetition.php
blob: 380d716abe021dc060ef45f84e062743949cc858 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
/**
 * Cinisis - Isis db reading tool.
 */

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

// Get input data.
$code  = CinisisHttpHelper::get_numeric_arg('code');
$entry = CinisisHttpHelper::get_numeric_arg('entry');

// Draw the document.
$display = new CinisisDisplayHelper('Repetition finder');
$form    = $display->form_input_text('code', $code) . $display->form_input_text('entry', $entry);
$display->form($form, 'repetition.php');

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

// Setup database and entry number.
if ($isis->db) {
  // Get the number of entries.
  $field   = $isis->db->format['fields'][$code]['name'];
  $entries = $isis->db->entries();
  $entry--;

  // Query database.
  do {
    $result = $isis->db->read(++$entry);
    if ($entry == $entries) {
      break;
    }
  } while (!isset($result[$field]) || count($result[$field]) < 2);

  // Navigation bar.
  $display->navbar($entry, $entries, $repetition, '&code='. $code);

  // Format output.
  echo "<pre>\n";
  echo "Selected field: $code: $field.\n";
  echo "Showing entry $entry from $entries total entries.\n";
  echo "Repetitions found: ". count($result[$field]) .".\n";
  echo "\n";
  print_r($result[$field]);
  echo '</pre>';
}

$display->footer();
?>