summaryrefslogtreecommitdiff
path: root/rt/html/RTx/Statistics/Elements/ControlsAsTable/ControlBox
blob: ce043e2946e803c038e1b5b5b7cc09b34e839499 (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
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
<table class="box" bgcolor="#336699" style="border-style:none solid solid solid;border-width:1px;border-color:#2E2E8C;" cellpadding="0" cellspacing="0">
  <tbody>
    <tr>
      <th style="color: rgb(51, 102, 153);" class="titlebox">
        <span class="titleboxclose">
          <a href="#" onclick="hideshow('stats_control')">X</a></span>&nbsp;
        <span class="titleboxtitle" style="color: rgb(255, 255, 255);">
          <b><% $Title %></b></span>
      </th>
      <th style="color: rgb(51, 102, 153);" class="titleboxright">
      <span class="titleboxright">&nbsp;</span>
      </th>
    </tr>
    <tr id="element-stats_control">
      <td colspan="3" class="" bgcolor="#dddddd">
        <table border="0" cellpadding="1" cellspacing="0">
% if (defined $ShowStatus) {
          <tr>
            <td class="collection-as-table" style="text-align:left;">Show Status:</td>
            <td COLSPAN=3 class="collection-as-table" style="text-align:left;">
	      <& /Elements/SelectStatus, Name=>"status", Default => $Status, DefaultValue => undef &>
	    </td>
          </tr>
% }
% if (defined $ShowSingleQueue) {
          <tr>
            <td class="collection-as-table" style="text-align:left;">Show Queue:</td>
            <td COLSPAN=3 class="collection-as-table" style="text-align:left;">
	      <& /Elements/SelectQueue, Name=>"Queue", Default=>$Queue ,ShowNullOption=>0, 
	             CheckQueueRight=>'SeeQueue' &>
	    </td>
          </tr>
% }
% if (defined $ShowDates) {
          <tr>
	    <& /RTx/Statistics/Elements/DateSelectRow, Label => "Start Date:", 
              refMonth => $sMonth, nameMonth => "sMonth", 
	      refDay => $sDay, nameDay => "sDay",
	      refYear => $sYear, nameYear => "sYear" &>
          </tr>
          <tr>
  	    <& /RTx/Statistics/Elements/DateSelectRow, Label => "End Date:", 
              refMonth => $eMonth, nameMonth => "eMonth", 
  	      refDay => $eDay, nameDay => "eDay",
	      refYear => $eYear, nameYear => "eYear" &>
          </tr>
          <tr>
  	    <td class="collection-as-table" style="text-align:left;">Show Weekends:</td>
  	    <td class="collection-as-table" style="text-align:left;">
  	      <select name=weekends>
  	        <option value=0 <% (!$weekends) && 'selected' %> >No</option>
  	        <option value=1 <% $weekends && 'selected' %> >Yes</option>
  	      </select>
  	    </td>
  	  </tr>
% }
% if (defined $ShowMultiQueues) {
          <tr>
% if (defined $ShowDates) {
%# If we're showing the dates, we put these side by side.
            <td COLSPAN=2 class="collection-as-table" style="text-align:left;">Select All Queues: <input type=checkbox name="AddAllCheck"></td>
	    <td COLSPAN=3 class="collection-as-table" >
	      <& /RTx/Statistics/Elements/SelectMultiQueue, Name=>"queues", Selected=>$queues_ref, 
                 ShowNullOption=>0, CheckQueueRight=>'SeeQueue', Size => 10, NamedValues => 1 &>
            </td>
% } else {
            <td COLSPAN=3 class="collection-as-table" style="text-align:left;">
	      <& /RTx/Statistics/Elements/SelectMultiQueue, Name=>"queues", Selected=>$queues_ref, 
                 ShowNullOption=>0, CheckQueueRight=>'SeeQueue', Size => 10, NamedValues => 1 &>
            </td>
          </tr>
          <tr>
            <td class="collection-as-table" style="text-align:left;">Select All Queues: <input type=checkbox name="AddAllCheck"></td>
% }
          </tr>
% }
	  <& /RTx/Statistics/Elements/ControlsAsTable/UpdatePage &>
        </table>
      </td>
    </tr>
  </tbody>
</table>


<BR>
<%args>
$Title => undef
$ShowMultiQueues => undef
$queues_ref => undef
$ShowDates => undef
$sMonth => undef
$sDay => undef
$sYear => undef
$eMonth => undef
$eDay => undef
$eYear => undef
$weekends => undef
$ShowSingleQueue => undef
$Queue => undef
$ShowStatus => undef
$Status => undef
</%args>