Add bootstrap css
[disclosr.git] / documents / 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
<?php
include('template.inc.php');
include_header_documents("");
include_once('../include/common.inc.php');
?>
<?php
 
 
 
$agenciesdb = $server->get_db('disclosr-agencies');
 
$idtoname = Array();
foreach ($agenciesdb->get_view("app", "byName")->rows as $row) {
    $idtoname[$row->value] = trim($row->key);
}
$foidocsdb = $server->get_db('disclosr-foidocuments');
try {
    $rows = $foidocsdb->get_view("app", "byDate", Array('9999-99-99','0000-00-00'), true)->rows;
 
 
    if ($rows) {
        foreach ($rows as $row) {
            //print_r($row);
displayLogEntry($row,$idtoname);
            /* 1/1/11 title (Dept dfggdfgdf)
              description:
              source link:
              documents:
              #1 title link */
        }
    }
} catch (SetteeRestClientException $e) {
    setteErrorHandler($e);
}
include_footer_documents();
?>