ereg is deprecated in f12
[plewww.git] / planetlab / includes / plc_functions.php
1 <?php
2
3 // $Id$
4
5 # note: this needs to be consistent with the value in Monitor/monitor/wrapper/plc.py
6 global $PENDING_CONSORTIUM_ID;
7 $PENDING_CONSORTIUM_ID = 0;
8 # this one does not matter that much, just picking one
9 global $APPROVED_CONSORTIUM_ID;
10 $APPROVED_CONSORTIUM_ID = 999999;
11
12 // utility
13 function my_is_int ($x) {
14     return (is_numeric($x) ? intval($x) == $x : false);
15 }
16
17 //////////////////////////////////////////////////////////// roles & other checks on global $plc
18 function plc_is_admin () {
19   global $plc;
20   return in_array( 10, $plc->person['role_ids']);
21 }
22 function plc_is_pi () {
23   global $plc;
24   return in_array( 20, $plc->person['role_ids']);
25 }
26 function plc_is_user () {
27   global $plc;
28   return in_array( 30, $plc->person['role_ids']);
29 }
30 function plc_is_tech () {
31   global $plc;
32   return in_array( 40, $plc->person['role_ids']);
33 }
34 function plc_in_site ($site_id) {
35   global $plc;
36   return in_array( $site_id, $plc->person['site_ids']);
37 }
38
39 function plc_my_site_ids () {
40   global $plc;
41   return $plc->person['site_ids'];
42 }
43 function plc_my_sites () {
44   global $plc;
45   global $api;
46   return $api->GetSites($plc->person['site_ids'], array('site_id', 'abbreviated_name'));
47 }
48
49 function plc_my_site_id () {
50   global $plc;
51   return $plc->person['site_ids'][0];
52 }
53
54 function plc_my_person () {
55   return $plc->person;
56 }
57 function plc_my_person_id () {
58   global $plc;
59   return $plc->person['person_id'];
60 }
61
62 //////////////////////////////////////////////////////////// links    
63 function href ($url,$text) { return "<a href='" . $url . "'>" . $text . "</a>"; }
64
65 // naming scheme is
66 // l_objects()                  -> the url to the page that list objects
67 // l_object($object_id)         -> the url to hte page thas details object with given id
68 // l_object_t($object_id,text)  -> an <a> tag that shows text and links to the above
69 // l_object_add ()              -> the url to that object-afding page
70
71 function l_actions ()                   { return "/db/common/actions.php"; }
72 // some complex node actions are kept separate, e.g. the ones related to getbootmedium
73 function l_actions_download ()          { return "/db/nodes/node_downloads.php"; }
74 function l_register_node ()             { return "/registerwizard/index.php"; }
75 function l_pcu_add ()                   { return "/registerwizard/index.php/register/stage1_addpcu"; }
76 function l_pcu ($pcu_id)                { return "/db/sites/pcu.php?id=$pcu_id"; }
77
78 function l_nodes ()                     { return "/db/nodes/index.php"; }
79 function l_nodes_peer ($peer_id)        { return "/db/nodes/index.php?peerscope=$peer_id"; }
80 function l_node ($node_id)              { return "/db/nodes/node.php?id=$node_id"; }
81 function l_node_interfaces ($node_id)   { return "/db/nodes/node.php?id=$node_id%show_details=0&show_interfaces=1"; }
82 function l_node_tags ($node_id)         { return "/db/nodes/node.php?id=$node_id%show_details=0&show_tags=1"; }
83 function l_node_t ($node_id,$text)      { return href (l_node($node_id),$text); }
84 function l_node_obj($node)              { return href(l_node($node['node_id']),$node['hostname']); }
85 function l_node_add ()                  { return "/db/nodes/node_add.php"; }
86 function l_nodes_site ($site_id)        { return "/db/nodes/index.php?site_id=$site_id"; }
87 function l_nodes_my_site ()             { return l_nodes_site(plc_my_site_id()) . "&active_line_tab=My site nodes"; }
88 function l_nodes_all_my_site ()         { return l_nodes_person(plc_my_person_id()) . "&active_line_tab=All My site nodes"; }
89 function l_nodes_person ($person_id)    { return "/db/nodes/index.php?person_id=$person_id"; }
90 function l_nodes_slice ($slice_id)      { return "/db/nodes/index.php?slice_id=$slice_id"; }
91
92 function l_interface ($interface_id)    { return "/db/nodes/interface.php?id=$interface_id"; }
93 function l_interface_tags($interface_id){ return "/db/nodes/interface.php?id=$interface_id&show_details=0&show_tags=1"; }
94 function l_interface_t ($interface_id,$text) { 
95                                           return href (l_interface($interface_id),$text); }
96 function l_interface_add($node_id)      { return "/db/nodes/interface.php?node_id=$node_id"; }
97
98 function l_sites ()                     { return "/db/sites/index.php"; }
99 function l_sites_peer ($peer_id)        { return "/db/sites/index.php?peerscope=$peer_id"; }
100 function l_site ($site_id)              { return "/db/sites/index.php?id=$site_id"; }
101 function l_site_t ($site_id,$text)      { return href (l_site($site_id),$text); }
102 function l_site_obj($site)              { return href (l_site($site['site_id']),$site['name']); }
103
104 function l_slices ()                    { return "/db/slices/index.php"; }
105 function l_slices_peer ($peer_id)       { return "/db/slices/index.php?peerscope=$peer_id"; }
106 function l_slice ($slice_id)            { return "/db/slices/index.php?id=$slice_id"; }
107 function l_slice_nodes ($slice_id)      { return "/db/slices/index.php?id=$slice_id&show_details=0&show_nodes=1&show_nodes_current=1&show_nodes_add=1"; }
108 function l_slice_t ($slice_id,$text)    { return href (l_slice($slice_id),$text); }
109 function l_slice_add ()                 { return "/db/slices/slice_add.php"; }
110 function l_slices_site($site_id)        { return "/db/slices/index.php?site_id=$site_id"; }
111 function l_slices_my_site()             { return l_slices_site(plc_my_site_id()) . "&active_line_tab=My site slices"; }
112 function l_slices_person($person_id)    { return "/db/slices/index.php?person_id=$person_id"; }
113 function l_slices_local()               { return "/db/slices/index.php?peerscope=local"; }
114 // from an object
115 function l_slice_obj ($slice)           { return l_slice_t ($slice['slice_id'],$slice['name']); }
116
117 function l_sliver ($node_id,$slice_id)  { return "/db/nodes/slivers.php?node_id=$node_id&slice_id=$slice_id"; }
118 function l_sliver_t ($node_id,$slice_id,$text) { 
119                                           return href (l_sliver($node_id,$slice_id),$text) ; }
120
121 function l_persons ()                   { return "/db/persons/index.php&active_line_tab=All Accounts"; }
122 function l_persons_peer ($peer_id)      { return "/db/persons/index.php?peerscope=$peer_id&active_line_tab=Local Accounts"; }
123 function l_person ($person_id)          { return "/db/persons/index.php?id=$person_id"; }
124 function l_person_roles ($person_id)    { return "/db/persons/index.php?id=$person_id&show_details=0&show_roles=1"; }
125 function l_person_t ($person_id,$text)  { return href (l_person($person_id),$text); }
126 function l_persons_site ($site_id)      { return "/db/persons/index.php?site_id=$site_id"; }
127 function l_persons_slice ($slice_id)    { return "/db/persons/index.php?slice_id=$slice_id"; }
128 function l_person_obj ($person)         { return l_person_t($person['person_id'],$person['email']); }
129
130 function l_tags ()                      { return "/db/tags/index.php"; }
131 function l_tag ($tag_type_id)           { return "/db/tags/index.php?id=$tag_type_id"; }
132 function l_tag_obj ($tag)               { return href(l_tag($tag['tag_type_id']),$tag['tagname']); }
133
134 function l_nodegroups ()                { return "/db/tags/nodegroups.php"; }
135 function l_nodegroup ($nodegroup_id)    { return "/db/tags/nodegroup.php?id=$nodegroup_id"; }
136 function l_nodegroup_t ($nodegroup_id,$text) { 
137                                           return href(l_nodegroup($nodegroup_id),$text); }
138 function l_nodegroup_obj ($nodegroup) { 
139                                           return href(l_nodegroup($nodegroup['nodegroup_id']),$nodegroup['groupname']); }
140
141 function l_events ()                    { return "/db/events/index.php"; }
142 function l_event ($type,$param,$id)     { return "/db/events/index.php?type=$type&$param=$id"; }
143
144 function l_peers()                      { return "/db/peers/index.php"; }
145 function l_peer($peer_id)               { return "/db/peers/index.php?id=$peer_id"; }
146 function l_peer_t($peer_id,$text)       { return href(l_peer($peer_id),$text); }
147
148 function l_comon($id_name,$id_value)    { return "/db/nodes/comon.php?$id_name=$id_value"; }
149 function l_sirius()                     { return "/db/sirius/index.php"; }
150 function l_about()                      { return "/db/common/about.php"; }
151 function l_doc_plcapi()                 { return "/db/doc/PLCAPI.php"; }
152 function l_doc_nmapi()                  { return "/db/doc/NMAPI.php"; }
153 function l_admin()                      { return "/db/common/adminsearch.php"; }
154
155 function l_login()                      { return "/db/common/login.php"; }
156 function l_logout()                     { return "/planetlab/common/logout.php"; }
157 function l_sulogout()                   { return "/planetlab/common/sulogout.php"; }
158 function l_reset_password()             { return "/db/persons/reset_password.php"; }
159 function l_person_register()            { return "/db/persons/register.php"; }
160 function l_site_register()              { return "/db/sites/register.php"; }
161 function l_sites_pending()              { return "/db/sites/join_request.php"; }
162 function l_site_review_pending($site_id){ return "/db/sites/join_request.php?review=t&site_id=$site_id"; }
163
164
165 //////////////////////////////////////////////////////////// nav tabs
166 function tab_nodes ()           { return array ('label'=>'All nodes','url'=>l_nodes(), 
167                                                 'bubble'=>'Display nodes from all peers'); }
168 function tab_nodes_local ()     { return array ('label'=>'Local nodes', 'url'=>l_nodes_peer('local'), 
169                                                 'bubble'=>'Display all nodes local to this peer'); }
170 function tab_nodes_site($site_id){ return array ('label'=>'Site nodes', 'url'=>l_nodes_site($site_id), 
171                                                  'bubble'=>'Display nodes on that site'); }
172 function tab_nodes_slice($slice_id){ return array ('label'=>'Slice nodes', 'url'=>l_nodes_slice($slice_id), 
173                                                  'bubble'=>'Display nodes for that slice'); }
174 function tab_nodes_mysite ()    { return array ('label'=>'My site nodes', 'url'=>l_nodes_my_site(), 
175                                                 'bubble'=>'Display nodes on my site'); }
176 function tab_nodes_all_mysite (){ return array ('label'=>'All My site nodes', 'url'=>l_nodes_all_my_site(),
177                                                 'bubble'=>'Display nodes on all my sites'); }
178 function tab_node($node)        { return array ('label'=>'Node '.$node['hostname'], 'url'=>l_node($node['node_id']),
179                                                 'bubble'=>'Details for ' . $node['hostname']); }
180 //////////
181 function tab_site($site)        { return array ('label'=>'Site '.$site['login_base'], 'url'=>l_site($site['site_id']),
182                                                 'bubble'=>'Details for ' . $site['name']); }
183 function tab_mysite()           { return array ('label'=>'My site', 'url'=>l_site(plc_my_site_id()),
184                                                 'bubble'=>'Details for site ' . plc_my_site_id()); }
185 function tab_sites ()           { return array ('label'=>'All sites' , 'url'=>l_sites(), 'bubble'=> 'Display all sites'); }
186 function tab_sites_local ()     { return array ('label'=>'Local sites' , 'url'=>l_sites_peer('local'), 
187                                                 'bubble'=> 'Display all siteslocal to this peer'); }
188 //////////
189 function tab_slices()           { return array ('label'=>'All slices', 'url'=>l_slices(),
190                                                 'bubble' => 'Display all slices'); }
191 function tab_slices_person()    { return array ('label'=>'My slices', 'url'=>l_slices_person(plc_my_person_id()),
192                                                 'bubble' => 'Display my all slices'); }
193 function tab_slices_mysite ()   { return array ('label'=>'My site slices', 'url'=>l_slices_my_site(), 
194                                                 'bubble'=>'Display all slices on my site'); }
195 function tab_slices_local ()    { return array ('label'=>'Local slices', 'url'=>l_slices_local(), 
196                                                 'bubble'=>'Display all slices local to this peer'); }
197 function tab_slice($slice)      { return array ('label'=>'Slice '.$slice['name'], 'url'=>l_slice($slice['slice_id']),
198                                                 'bubble' => 'Details for ' . $slice['name']); }
199 //////////
200 function tab_persons()          { return array ('label'=>'All Accounts', 'url'=>l_persons(),
201                                                 'bubble'=>'Display users from all peers'); }
202 function tab_persons_local()    { return array ('label'=>'Local Accounts', 'url'=>l_persons_peer('local'),
203                                                 'bubble'=>'Display all users local to this peer'); }
204 function tab_persons_mysite()   { return array ('label'=>'My site accounts' , 'url'=>l_persons_site(plc_my_site_id()),
205                                                 'bubble'=>'Display accounts on site ' . plc_my_site_id()); }
206 function tab_person($person)    { return array ('label'=>'Account '.$person['email'], 'url'=>l_person($person['person_id']),
207                                                 'bubble'=>'Details for ' . $person['email']); }
208 //////////
209 function tab_tags()             { return array ('label'=>'Tag Types', 'url'=>l_tags(),
210                                                 'bubble' => 'Display and create tag types'); }
211 function tab_nodegroups()       { return array ('label'=>'Nodegroups', 'url'=>l_nodegroups(),
212                                                 'bubble' => 'Display and create nodegroups'); }
213
214 // only partial tab
215 function tablook_event()        { return array('image'=>'/planetlab/icons/event.png','height'=>18);}
216 function tablook_comon()        { return array('image'=>'/planetlab/icons/comon.png','height'=>18);}
217
218
219
220 //////////////////////////////////////////////////////////// validation functions
221 function topdomain ($hostname) {
222   $exploded=array_reverse(explode(".",$hostname));
223   return $exploded[0];
224 }
225
226 // with php-5.3 on f12, ereg is marked deprecated, using PCRE instead
227 // looks unused
228 function is_valid_email_addr ($email) {
229   if (preg_match("/^.+@.+\\..+$/", $email) ) {
230     return true;
231   } else {
232     return false;
233   }
234 }
235
236 // looks unused
237 function is_valid_url ($url) {
238   if (preg_match("/^(http|https):\/\/.+\..+$/", strtolower($url) ) ) {
239     return true;
240   } else {
241     return false;
242   }
243 }
244
245 function is_valid_ip ($ip) {
246   if (preg_match("/^([0-9]{1,3})\.([0-9]{1,3})\.([0-9]{1,3})\.([0-9]{1,3})$/", $ip ) ) {
247       // it's at least in the right format, now check to see if
248       // each part is equal to less than 255
249       $parts= explode( '.', $ip );
250       $count= count($parts);
251
252       for( $i= 0; $i < $count; $i++ ) {
253         if( intval($parts[$i]) > 255 )
254           return false;
255       }
256
257       return true;
258   } else {
259     return false;
260   }
261 }
262
263 function is_valid_network_addr($network_addr,$mask) {
264   $lNetwork= ip2long($network_addr);
265   $lMask= ip2long($mask);
266
267   // are they the correct format?
268   if( $lNetwork == -1 || $lMask == -1 )
269     return false;
270
271   // is network address valid for the mask?
272   if( ($lNetwork & $lMask) != $lNetwork )
273     return false;
274
275   return true;
276 }
277
278
279 // returns whether or not a network address is in the reserved space
280 // in the case of a invalid network address, false will be returned.
281 function is_reserved_network_addr($network_addr) {
282   $lNetwork= ip2long($network_addr);
283
284   if( $lNetwork == -1 )
285     return false;
286
287   // does the network address fall in a reserved block?
288   $reserved_ips = array (
289                          array('10.0.0.0','10.255.255.255'),
290                          array('172.16.0.0','172.31.0.0'),
291                          array('192.168.0.0','192.168.255.0')
292                          );
293   foreach ($reserved_ips as $r) {
294     $min = ip2long($r[0]);
295     $max = ip2long($r[1]);
296       
297     if (($lNetwork >= $min) && ($lNetwork <= $max))
298       return true;
299   }
300
301   return false;
302 }
303
304 ////////////////////////////////////////////////////////////  roles
305 function plc_role_global_hash ($api) {
306   $hash=array();
307   $roles=$api->GetRoles();
308   foreach ($roles as $role) {
309     $hash[$role['role_id']]=$role['name'];
310   }
311   return $hash;
312 }
313
314 // because GetRoles does not correctly support filters, it's really painful to do this
315 function sort_roles ($r1, $r2) { return $r2['role_id'] - $r1['role_id']; }
316 function roles_except ($roles, $exception_ids) {
317   $result=array();
318   if ($roles) foreach ($roles as $role) {
319       if ( ! in_array ($role['role_id'],$exception_ids) ) {
320         $result[]=$role;
321       }
322     }
323   usort($result,sort_roles);
324   return $result;
325 }
326
327 //////////////////////////////////////////////////////////// nodegroups
328 // hash by 'tagname=value'
329 function plc_nodegroup_global_hash ($api,$tagnames=NULL) {
330   $filter=NULL;
331   // xxx somehow this does not work; I've checked that the feature is working from plcsh
332   // but I suspect the php marshalling or something; no time to fix, get all nodegroups for now
333   // if ($tagnames) $filter=array("tagname"=>$tagnames);
334   $nodegroups=$api->GetNodeGroups($filter);
335   $hash=array();
336   if ($nodegroups) foreach ($nodegroups as $nodegroup) {
337       $key=$nodegroup['tagname']."=".$nodegroup['value'];
338       $hash[$key]=$nodegroup;
339     }
340   return $hash;
341 }
342   
343 //////////////////////////////////////////////////////////// titles
344 function t_site($site) { return " on site " . $site['name'] . " (" . $site['login_base'] .")"; }
345 function t_slice ($slice) { return " running slice " . $slice['name'] . " (" . $slice['slice_id'] . ")"; }
346 function t_person ($person) { return " belonging to " . $person['email'] . " (" . $person['person_id'] . ")"; }
347
348 //////////////////////////////////////////////////////////// html fragments
349 function plc_vertical_table ($messages, $class="") {
350   if ( empty( $messages) ) return "";
351   $formatted = "";
352   $formatted .= "<table";
353   if ($class) $formatted .= " class='" . $class . "'";
354   $formatted .= ">";
355   foreach ($messages as $message) {
356     $formatted .= "<tr><td>" . $message . "</td></tr>";
357   }
358   $formatted .= "</table>";
359   return $formatted;
360 }
361 function plc_itemize ($messages, $class="") {
362   if ( empty( $messages) ) return "";
363   $formatted = "";
364   $formatted .= "<ul";
365   if ($class) $formatted .= " class='" . $class . "'";
366   $formatted .= ">";
367   foreach ($messages as $message) {
368     $formatted .= "<li>" . $message . "</li>";
369   }
370   $formatted .= "</ul>";
371   return $formatted;
372 }
373
374 //////////
375 function truncate ($text,$numb,$etc = "...") {
376   if (strlen($text) > $numb) {
377     $text = substr($text, 0, $numb);
378     $text = $text.$etc;
379   }
380   return $text;
381 }
382 // generates <(atom) class=(class)> (text) </(atom)>
383 function html_atom ($atom,$text,$class="") {
384   $html="<$atom";
385   if ($class) $html .= " class='$class'";
386   $html .= ">$text</$atom>";
387   return $html;
388 }
389 function html_div ($text,$class="") { return html_atom ('div',$text,$class); }
390 function html_span ($text,$class="") { return html_atom ('span',$text,$class); }
391
392 // should use the same channel as the php errors..
393 function plc_error_html ($text)         { return  html_div ($text,'plc-error'); }
394 function plc_error ($text)              { print plc_error_html ("Error " . $text); }
395
396 function errors_init() { return array();}
397 function errors_record ($adm, $errors) {
398   if ($adm->error()) {
399     $tmp=$adm->error();
400     $errors []= $tmp;
401   }
402   return $errors;
403 }
404
405 function errors_display ($errors) {
406   if ($errors) {
407     print( "<div class='plc-error'>" );
408     print( "<p>The following errors occured:</p>" );
409     print("<ul>");
410     foreach( $errors as $error ) 
411       print( "<li>$error</li>\n" );
412     print( "</ul></div>\n" );
413   }
414 }
415
416 function plc_warning_html ($text)       { return html_span($text,'plc-warning'); }
417 function plc_warning ($text)            { print plc_warning_html("Warning " . $text); }
418
419 function bold_html ($text)              { return html_span($text,'bold'); }
420
421 // shows a php variable verbatim with a heading message
422 function plc_debug ($message,$object) {
423   print "<br>" . $message . "<pre>";
424   print_r ($object);
425   print "</pre>";
426 }
427
428 if (! function_exists ("drupal_set_error")) {
429   function drupal_set_error ($text) {
430     drupal_set_message ("<span class=error>$text</span>");
431   }
432  }
433
434 //////////////////////////////////////////////////////////// sort out for obsolete / trash
435 // builds a table from an array of strings, with the given class
436 // attempt to normalize the delete buttons and confirmations
437 function plc_delete_icon($width=15) {
438   return "<img width='$width' src='/planetlab/icons/delete.png'>";
439 }
440
441 function plc_add_icon($width=15) {
442   return "<img width='$width' src='/planetlab/icons/add.png'>";
443 }
444
445 function plc_bubble($text,$bubble) {
446   return "<span title='$bubble'>$text</span>";
447 }
448 function plc_delete_icon_bubble ($bubble,$width=15) {
449   return plc_bubble(plc_delete_icon($width),$bubble);
450 }
451
452 function plc_event_button($type,$param,$id) {
453   return '<a href="' . l_event($type,$param,$id) . '"> <span title="Related events"> <img src="/planetlab/icons/event.png" width=18></span></a>';
454 }
455
456 function plc_comon_button ($id_name, $id_value,$target="") {
457   $result='<a ';
458   if (!empty($target)) {
459     $result.='target="' . $target . '" ';
460   }
461   $result.='href="' . l_comon($id_name,$id_value) . '">';
462   $result.='<span title="Link to Comon"> <img src="/planetlab/icons/comon.png" width="18"></span></a>';
463   return $result;
464 }
465
466 ////////////////////
467 function plc_redirect ($url) {
468   header ("Location: " . $url);
469   exit ();
470 }
471
472 //////////////////// the options for an interface - suitable for plekit/form
473 //>>> GetNetworkMethods()
474 //[u'static', u'dhcp', u'proxy', u'tap', u'ipmi', u'unknown']
475 function interface_method_selectors ($api, $method, $primary) {
476   if ($primary) {
477     $builtin_methods=array("static"=>"Static",
478                            "dhcp"=>"DHCP");
479   } else {
480     $builtin_methods=array("static"=>"Static",
481                            "dhcp"=>"DHCP", 
482                            "proxy"=>"Proxy",  
483                            "tap"=>"TUN/TAP",
484                            "ipmi"=>"IPMI");
485   }
486   $selectors=array();
487   foreach ($builtin_methods as $value=>$display) {
488     $selector=array('display'=>$display, 'value'=>$value);
489     if ($value == $method) $selector['selected']=true;
490     $selectors []= $selector;
491   }
492   return $selectors;
493 }
494
495 // displays bandwidth with kbps Mbps Gbps as needed
496 function pretty_bandwidth ($bw) {
497   if ($bw < 1000)               return $bw;
498   if ($bw < 1000000)            return strval($bw/1000) . " kbps";
499   if ($bw < 1000000000)         return strval($bw/1000000) . " Mbps";
500   else                          return strval($bw/1000000000) . " Gbps";
501 }
502
503 //////////////////// 
504 function instantiation_label ($slice) {
505   $instantiation_labels = array ('not-instantiated'=>'NOT',
506                                  'plc-instantiated'=>'PLC',
507                                  'delegated' => 'DEL',
508                                  'nm-controller' => 'NM');
509   $result=$instantiation_labels[$slice['instantiation']];
510   if (!$result) $result = $slice['instantiation'];
511   if (!$result) $result = '??';
512   return $result;
513 }
514   
515 //////////////////// toggle areas
516 // get_arg ('show_persons',false) returns $_GET['show_persons'] if set and false otherwise
517 function get_arg ($name,$default,$method='get') {
518   if ($method == 'get') $var=$_GET; else $var=$_POST;
519   if (isset ($var[$name])) return $var[$name];
520   else return $default;
521 }
522
523 //////////////////// number of ...
524 function count_english ($objs,$name) {
525   $count=count($objs);
526   if ($count == 0) return 'No ' . $name;
527   else if ($count == 1) return 'One ' . $name;
528   else return $count . ' ' . $name . 's';
529 }
530 function count_english_warning ($objs, $name) {
531   $x=count_english ($objs,$name);
532   if (count ($objs) == 0) $x=plc_warning_html($x . ' !!');
533   return $x;
534 }
535 ?>