ckp
[plewww.git] / plekit / php / table.php
1 <?php
2
3   // $Id$
4
5 require_once 'prototype.php';
6
7 drupal_set_html_head('
8 <script type="text/javascript" src="/plekit/tablesort/tablesort.js"></script>
9 <script type="text/javascript" src="/plekit/tablesort/customsort.js"></script>
10 <script type="text/javascript" src="/plekit/tablesort/paginate.js"></script>
11 <script type="text/javascript" src="/plekit/table/table.js"></script>
12 <link href="/plekit/table/table.css" rel="stylesheet" type="text/css" />
13 ');
14
15 ////////////////////////////////////////
16 // table_id: <table>'s id tag - WARNING : do not use '-' in table ids as it's used for generating javascript code
17 // headers: an associative array "label"=>"type" 
18 // column_sort: the column to sort on at load-time
19 // options : an associative array to override options 
20 //  - search_area : boolean (default true)
21 //  - pagesize_area : boolean (default true)
22 //  - notes_area : boolean (default true)
23 //  - search_width : size in chars of the search text dialog
24 //  - notes : an array of additional notes
25 //  - pagesize: the initial pagination size
26 //  - pagesize_def: the page size when one clicks the pagesize reset button
27 //  - max_pages: the max number of pages to display in the paginator
28
29 class PlekitTable {
30   // mandatory
31   var $table_id;
32   var $headers;
33   var $column_sort;
34   // options
35   var $search_area;   // boolean (default true)
36   var $pagesize_area; // boolean (default true)
37   var $notes_area;    // boolean (default true)
38   var $search_width;  // size in chars of the search text dialog
39   var $pagesize;       // the initial pagination size
40   var $pagesize_def;  // the page size when one clicks the pagesize reset button
41   var $max_pages;     // the max number of pages to display in the paginator
42   var $notes;         // an array of additional notes
43   var $has_tfoot;
44
45   function PlekitTable ($table_id,$headers,$column_sort,$options=NULL) {
46     $this->table_id = $table_id;
47     $this->headers = $headers;
48     $this->column_sort = $column_sort;
49     
50     $this->has_tfoot=false;
51
52     $this->search_area = true;
53     $this->pagesize_area = true;
54     $this->notes_area = true;
55     $this->search_width = 40;
56     $this->pagesize = 25;
57     $this->pagesize_def = 999;
58     $this->max_pages = 10;
59     $this->notes = array();
60
61     $this->set_options ($options);
62   }
63
64   function set_options ($options) {
65     if ( ! $options)
66       return;
67     if (array_key_exists('search_area',$options)) $this->search_area=$options['search_area'];
68     if (array_key_exists('pagesize_area',$options)) $this->pagesize_area=$options['pagesize_area'];
69     if (array_key_exists('notes_area',$options)) $this->notes_area=$options['notes_area'];
70     if (array_key_exists('search_width',$options)) $this->search_width=$options['search_width'];
71     if (array_key_exists('pagesize',$options)) $this->pagesize=$options['pagesize'];
72     if (array_key_exists('pagesize_def',$options)) $this->pagesize_def=$options['pagesize_def'];
73     if (array_key_exists('max_pages',$options)) $this->max_pages=$options['max_pages'];
74
75     if (array_key_exists('notes',$options)) $this->notes=array_merge($this->notes,$options['notes']);
76   }
77
78   public function columns () {
79     return count ($this->headers);
80   }
81
82   ////////////////////
83   public function start () {
84     $paginator=$this->table_id."_paginator";
85     $classname="paginationcallback-".$paginator;
86     $classname.=" max-pages-" . $this->max_pages;
87     $classname.=" paginate-" . $this->pagesize;
88   // instantiate paginator callback
89     print <<< EOF
90 <script type="text/javascript"> 
91 function $paginator (opts) { plekit_table_paginator (opts,"$this->table_id"); }
92 </script>
93 <br/>
94 <table id="$this->table_id" cellpadding="0" cellspacing="0" border="0" 
95 class="plekit_table sortable-onload-$this->column_sort rowstyle-alt colstyle-alt no-arrow $classname">
96 <thead>
97 EOF;
98
99   if ($this->pagesize_area)
100     print $this->pagesize_area_html ();
101   if ($this->search_area) 
102     print $this->search_area_html ();
103
104   print "<tr>";
105   foreach ($this->headers as $label => $type) {
106     switch ($type) {
107     case "none" : 
108       $class=""; break;
109     case "string": case "int": case "float":
110       $class="sortable"; break;
111     case ( strpos($type,"date-") == 0):
112       $class="sortable-" . $type; break;
113     default:
114       $class="sortable-sort" . $type; break;
115     }
116     printf ('<th class="%s plekit_table">%s</th>',$class,$label);
117   }
118
119   print <<< EOF
120 </tr>
121 </thead>
122 <tbody>
123 EOF;
124 }
125
126   ////////////////////
127   // for convenience, the options that apply to the bottom area can be passed here
128   // typically notes will add up to the ones provided so far, and to the default ones 
129   // xxx default should be used only if applicable
130   function end ($options=NULL) {
131     $this->set_options($options);
132     print $this->bottom_html();
133     if ($this->notes_area) 
134       print $this->notes_area_html();
135   }
136                     
137   ////////////////////
138   function pagesize_area_html () {
139     $width=count($this->headers);
140     $pagesize_text_id = $this->table_id . "_pagesize";
141     $result= <<< EOF
142 <tr class='pagesize_area'><td class='pagesize_area' colspan='$width'>
143 <form class='pagesize' action='satisfy_xhtml_validator'><fieldset>
144    <input class='pagesize_input' type='text' id="$pagesize_text_id" value='$this->pagesize'
145       onkeyup='plekit_pagesize_set("$this->table_id","$pagesize_text_id", $this->pagesize);' 
146       size='3' maxlength='3' /> 
147   <label class='pagesize_label'> items/page </label>   
148   <img class='reset' src="/planetlab/icons/clear.png" alt="reset visible size"
149       onmousedown='plekit_pagesize_reset("$this->table_id","$pagesize_text_id",$this->pagesize_def);' />
150 </fieldset></form></td></tr>
151 EOF;
152     return $result;
153 }
154
155   ////////////////////
156   function search_area_html () {
157     $width=count($this->headers);
158     $search_text_id = $this->table_id . "_search";
159     $search_reset_id = $this->table_id . "_search_reset";
160     $search_and_id = $this->table_id . "_search_and";
161     $result = <<< EOF
162 <tr class='search_area'><td class='search_area' colspan='$width'>
163 <form class='search' action='satisfy_xhtml_validator'><fieldset>
164    <label class='search_label'> Search </label> 
165    <input class='search_input' type='text' id='$search_text_id'
166       onkeyup='plekit_table_filter("$this->table_id","$search_text_id","$search_and_id");'
167       size='$this->search_width' maxlength='256' />
168    <label>and</label>
169    <input id='$search_and_id' class='search_and' 
170       type='checkbox' checked='checked' 
171       onchange='plekit_table_filter("$this->table_id","$search_text_id","$search_and_id");' />
172    <img class='reset' src="/planetlab/icons/clear.png" alt="reset search"
173       onmousedown='plekit_table_filter_reset("$this->table_id","$search_text_id","$search_and_id");' />
174 </fieldset></form></td></tr>
175 EOF;
176     return $result;
177   }
178
179   //////////////////// start a <tfoot> section
180   function tfoot_start () { print $this->tfoot_start_html(); }
181   function tfoot_start_html () {
182     $this->has_tfoot=true;
183     return "</tbody><tfoot>";
184   }
185
186   ////////////////////////////////////////
187   function bottom_html () {
188     $result="";
189     if ($this->has_tfoot)
190       $result .= "</tfoot>";
191     else
192       $result .= "</tbody>";
193     $result .= "</table>\n";
194     return $result;
195   }
196
197   ////////////////////////////////////////
198   function notes_area_html () {
199     $default_notes =  array(
200         "Enter &amp; or | in the search area to switch between <span class='bold'>AND</span> and <span class='bold'>OR</span> search modes",
201         "Hold down the shift key to select multiple columns to sort");
202
203     if ($this->notes)
204       $notes=$this->notes;
205     else
206       $notes=array();
207     $notes=array_merge($notes,$default_notes);
208     if (! $notes)
209       return "";
210     $result = "";
211     $result .= "<p class='table_note'> <span class='table_note_title'>Notes</span>\n";
212     foreach ($notes as $note) 
213       $result .= "<br/>$note\n";
214     $result .= "</p>";
215     return $result;
216   }
217
218   ////////////////////////////////////////
219   function row_start ($id=NULL,$class=NULL) {
220     print "<tr";
221     if ( $id) print (" id=\"$id\"");
222     if ( $class) print (" class=\"$class\"");
223     print ">\n";
224   }
225
226   function row_end () {
227     print "</tr>\n";
228   }
229
230   ////////////////////
231   public function cell ($text,$colspan=0,$align=NULL) { print $this->cell_html ($text,$colspan,$align); }
232   public function cell_html ($text,$colspan=0,$align=NULL) {
233     $result="";
234     $result .= "<td";
235     if ($colspan) $result .= " colspan='$colspan'";
236     if ($align) $result .= " style='text-align:$align'";
237     $result .= ">$text</td>";
238     return $result;
239   }
240
241 }
242
243 ?>