4072d2e8aead41d2a69bd3891b092118fbf9aadc
[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     if ($type == "none" ) {
107       $class="";
108     } else {
109       if ($type == "string") $type="";
110       if ($type == "int") $type="";
111       if ($type == "float") $type="";
112       $class="sortable";
113       if ( ! empty($type)) $class .= "-sort" . $type;
114     }
115     printf ('<th class="%s plekit_table">%s</th>',$class,$label);
116   }
117
118   print <<< EOF
119 </tr>
120 </thead>
121 <tbody>
122 EOF;
123 }
124
125   ////////////////////
126   // for convenience, the options that apply to the bottom area can be passed here
127   // typically notes will add up to the ones provided so far, and to the default ones 
128   // xxx default should be used only if applicable
129   function end ($options=NULL) {
130     $this->set_options($options);
131     print $this->bottom_html();
132     if ($this->notes_area) 
133       print $this->notes_area_html();
134   }
135                     
136   ////////////////////
137   function pagesize_area_html () {
138     $width=count($this->headers);
139     $pagesize_text_id = $this->table_id . "_pagesize";
140     $result= <<< EOF
141 <tr class=pagesize_area><td class=pagesize_area colspan=$width><form class='pagesize'>
142    <input class='pagesize_input' type='text' id="$pagesize_text_id" value=$this->pagesize 
143       onkeyup='plekit_pagesize_set("$this->table_id","$pagesize_text_id", $this->pagesize);' 
144       size=3 maxlength=3 /> 
145   <label class='pagesize_label'> items/page </label>   
146   <img class='table_reset' src="/planetlab/icons/clear.png" 
147       onmousedown='plekit_pagesize_reset("$this->table_id","$pagesize_text_id",$this->pagesize_def);' />
148 </form></td></tr>
149 EOF;
150     return $result;
151 }
152
153   ////////////////////
154   function search_area_html () {
155     $width=count($this->headers);
156     $search_text_id = $this->table_id . "_search";
157     $search_reset_id = $this->table_id . "_search_reset";
158     $search_and_id = $this->table_id . "_search_and";
159     $result = <<< EOF
160 <tr class=search_area><td class=search_area colspan=$width><form class='table_search'>
161    <label class='table_search_label'> Search </label> 
162    <input class='table_search_input' type='text' id='$search_text_id'
163       onkeyup='plekit_table_filter("$this->table_id","$search_text_id","$search_and_id");'
164       size=$this->search_width maxlength=256 />
165    <label>and</label>
166    <input id='$search_and_id' class='table_search_and' 
167       type='checkbox' checked='checked' 
168       onchange='plekit_table_filter("$this->table_id","$search_text_id","$search_and_id");' />
169    <img class='table_reset' src="/planetlab/icons/clear.png" 
170       onmousedown='plekit_table_filter_reset("$this->table_id","$search_text_id","$search_and_id");'>
171 </form></td></tr>
172 EOF;
173     return $result;
174   }
175
176   //////////////////// start a <tfoot> section
177   function tfoot_start () { print $this->tfoot_start_html(); }
178   function tfoot_start_html () {
179     $this->has_tfoot=true;
180     return "</tbody><tfoot>";
181   }
182
183   ////////////////////////////////////////
184   function bottom_html () {
185     $result="";
186     if ($this->has_tfoot)
187       $result .= "</tfoot>";
188     else
189       $result .= "</tbody>";
190     $result .= "</table>\n";
191     return $result;
192   }
193
194   ////////////////////////////////////////
195   function notes_area_html () {
196     $default_notes =  array(
197         "Enter & or | in the search area to alternate between <bold>AND</bold> and <bold>OR</bold> search modes",
198         "Hold down the shift key to select multiple columns to sort");
199
200     if ($this->notes)
201       $notes=$this->notes;
202     else
203       $notes=array();
204     $notes=array_merge($notes,$default_notes);
205     if (! $notes)
206       return "";
207     $result = "";
208     $result .= "<p class='plekit_table_note'> <span class='plekit_table_note_title'>Notes</span>\n";
209     foreach ($notes as $note) 
210       $result .= "<br/>$note\n";
211     $result .= "</p>";
212     return $result;
213   }
214
215   ////////////////////////////////////////
216   function row_start ($id=NULL,$class=NULL) {
217     print "<tr";
218     if ( $id) print (" id=\"$id\"");
219     if ( $class) print (" class=\"$class\"");
220     print ">\n";
221   }
222
223   function row_end () {
224     print "</tr>\n";
225   }
226
227   ////////////////////
228   public function cell ($text,$colspan=0,$align=NULL) { print $this->cell_html ($text,$colspan,$align); }
229   public function cell_html ($text,$colspan=0,$align=NULL) {
230     $result="";
231     $result .= "<td";
232     if ($colspan) $result .= " colspan=$colspan";
233     if ($align) $result .= " style='text-align:$align'";
234     $result .= ">$text</td>";
235     return $result;
236   }
237
238 }
239
240 ?>