tweak year/agency modifer for queries
[contractdashboard.git] / lib / common.inc.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<?php
date_default_timezone_set("Australia/ACT");
 
require_once ('jpgraph/jpgraph.php');
require_once ('jpgraph/jpgraph_line.php');
require_once ('jpgraph/jpgraph_log.php');
require_once ('jpgraph/jpgraph_mgraph.php');
require_once ('jpgraph/jpgraph_pie.php');
require_once ('jpgraph/jpgraph_bar.php');
require_once ('jpgraph/jpgraph_date.php');
 
error_reporting(E_ALL ^ E_NOTICE);
 
 
$link = mysql_connect('localhost', 'root', '');
if (!$link) {
  die('Could not connect: ' . mysql_error());
}
@mysql_select_db("contractDashboard") or die("Unable to select database");
 
function ucsmart($str) {
  return preg_replace("/(?<=(?<!:|’s)\W)
            (A|An|And|At|For|In|Of|On|Or|The|To|With)
            (?=\W)/e", 'strtolower("$1")', ucwords(strtolower($str)));
}
 
function percent($num_amount, $num_total) {
  $count1 = $num_amount / $num_total;
  $count2 = $count1 * 100;
  $count = number_format($count2, 2);
  return $count;
}
 function array_sum_all($a) {
  if(!is_array($a)) return $a;
  foreach($a as $key=>$value)
     $totale += array_sum_all($value);
  return $totale; 
 }
// magic query modifiers
$agency = mysql_real_escape_string(stripslashes($_REQUEST['agency']));
if ($agency != "") $agencyQ = "agencyName = '" . $agency . "' AND ";
$supplier = mysql_real_escape_string(stripslashes($_REQUEST['supplier']));
if ($supplier != "") {
  $supplierParts = explode("-", $supplier);
  if ($supplierParts[0] > 0) $supplierQ = "supplierABN = '" . $supplierParts[0] . "' AND ";
  else $supplierQ = "supplierName LIKE '%" . $supplierParts[1] . "%' AND ";
}
$year = mysql_real_escape_string(stripslashes($_REQUEST['year']));
if ($year != "") $yearQ = "YEAR(publishDate) = " . $year . " AND ";
 
$start =0.0;
 
function include_header($title) {
    global $start;
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"  
"http://www.w3.org/TR/html4/strict.dtd"> 
<html>
    <head>
        <title>Contract Dashboard - <?=$title?></title>
        <link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/2.8.0r4/build/reset-fonts-grids/reset-fonts-grids.css"> 
        <link type="text/css" rel="stylesheet" href="style.css">
            <script type="text/javascript" src="lib/bsn.AutoSuggest_2.1.3_comp.js" charset="utf-8"></script>
 
<link rel="stylesheet" href="autosuggest_inquisitor.css" type="text/css" media="screen" charset="utf-8" />
            <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
  //hide the all of the element with class msg_body
  $(".msg_body").hide();
  //toggle the componenet with class msg_body
  $(".msg_head").click(function()
  {
    $(this).next(".msg_body").slideToggle(600);
  });
});
</script>
        </head>
<body><div id="doc3" class="yui-t4">
    <div id="hd">
        <h1> contract dashboard</h1>
        </div>
        <div id="sitenav">
            <a href="displayAgency.php">agencies</a>
            <a href="displaySupplier.php">suppliers</a>
            <a href="displayCategory.php">product/service categories</a>
            <a href="displayCalendar.php">time periods</a>
            | metrics |
            <a href="displayProcurementMethod.php">procurement method</a>
            <a href="displayConfidentialities.php">contractual confidentiality</a>
            <a href="displayConsultancies.php">consultancies</a>
            <a href="displayAmendments.php">amendments</a>
            <a href="displayMap.php">postcodes</a>
            <div id="search"><form method="post" action="search.php" class="asholder">
        <label for="searchKeyword">search</label>
        <input type="text" id="searchKeyword" name="searchKeyword"  value="" style="width:150px" />
        <input type="hidden" id="searchID" name="searchID" value=""/><input type="submit" value="submit" />
</form></div>
            <script type="text/javascript">
        
        var options_xml = {
                script: function (input) { return "search_autosuggest.php?input="+input; },
                varname:"input",
                callback: function (obj) { document.getElementById('searchID').value = obj.id; }
        };
        var as_xml = new bsn.AutoSuggest('searchKeyword', options_xml);
</script>
 
            </div>
             <div id="bd" role="main"> 
    <div id="yui-main"> 
        <div class="yui-b"><div class="yui-g">
<?php
$start = (float) array_sum(explode(' ',microtime())); 
}
 
function include_footer() {
    global $start;
$end = (float) array_sum(explode(' ',microtime()));
    ?>
    </div> 
</div> 
    </div> 
    <div class="yui-b">
        Filter by:<ul>
        <li>year
            <ul><li>2008</li>
            </ul>
        </li>
        </ul> <br>        </div> </div>
     
    <?php
   echo '<div id="ft"><p>'."Processing time: ". sprintf("%.4f", ($end-$start))." seconds".'</p></div>'; 
   echo '</div> </body> </html>';
} 
?>