OSDN Git Service

f879f6054979a7ef266c61962d2bdc6bee0b6637
[nucleus-jp/nucleus-jp-ancient.git] / utf8 / nucleus / libs / showlist.php
1 <?php
2 /*
3  * Nucleus: PHP/MySQL Weblog CMS (http://nucleuscms.org/)
4  * Copyright (C) 2002-2009 The Nucleus Group
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2
9  * of the License, or (at your option) any later version.
10  * (see nucleus/documentation/index.html#license for more info)
11  */
12 /**
13  * Functions to create lists of things inside the admin are
14  *
15  * @license http://nucleuscms.org/license.txt GNU General Public License
16  * @copyright Copyright (C) 2002-2009 The Nucleus Group
17  * @version $Id$
18  * @version $NucleusJP: showlist.php,v 1.7.2.3 2007/12/03 00:01:48 kmorimatsu Exp $
19  */
20
21
22 // can take either an array of objects, or an SQL query
23 function showlist($query, $type, $template) {
24
25         if (is_array($query)) {
26                 if (sizeof($query) == 0)
27                         return 0;
28
29                 call_user_func('listplug_' . $type, $template, 'HEAD');
30
31                 foreach ($query as $currentObj) {
32                         $template['current'] = $currentObj;
33                         call_user_func('listplug_' . $type, $template, 'BODY');
34                 }
35
36                 call_user_func('listplug_' . $type, $template, 'FOOT');
37
38                 return sizeof($query);
39
40         } else {
41                 $res = sql_query($query);
42
43                 // don't do anything if there are no results
44                 $numrows = mysql_num_rows($res);
45                 if ($numrows == 0)
46                         return 0;
47
48                 call_user_func('listplug_' . $type, $template, 'HEAD');
49
50                 while($template['current'] = mysql_fetch_object($res))
51                         call_user_func('listplug_' . $type, $template, 'BODY');
52
53                 call_user_func('listplug_' . $type, $template, 'FOOT');
54
55                 mysql_free_result($res);
56
57                 // return amount of results
58                 return $numrows;
59         }
60 }
61
62 function listplug_select($template, $type) {
63         switch($type) {
64                 case 'HEAD':
65                         echo '<select name="' . ifset($template['name']) . '" tabindex="' . ifset($template['tabindex']) . '" ' . ifset($template['javascript']) . '>';
66
67                         // add extra row if needed
68                         if (ifset($template['extra'])) {
69                                 echo '<option value="', ifset($template['extraval']), '">', $template['extra'], '</option>';
70                         }
71
72                         break;
73                 case 'BODY':
74                         $current = $template['current'];
75
76                         echo '<option value="' . htmlspecialchars($current->value) . '"';
77                         if ($template['selected'] == $current->value)
78                                 echo ' selected="selected" ';
79                         if (isset($template['shorten']) && $template['shorten'] > 0) {
80                                 echo ' title="'. htmlspecialchars($current->text).'"';
81                                 $current->text = shorten($current->text, $template['shorten'], $template['shortenel']);
82                         }
83                         echo '>' . htmlspecialchars($current->text) . '</option>';
84                         break;
85                 case 'FOOT':
86                         echo '</select>';
87                         break;
88         }
89 }
90
91 function listplug_table($template, $type) {
92         switch($type) {
93                 case 'HEAD':
94                         echo "<table>";
95                         echo "<thead><tr>";
96                         // print head
97                         call_user_func("listplug_table_" . $template['content'] , $template, 'HEAD');
98                         echo "</tr></thead><tbody>";
99                         break;
100                 case 'BODY':
101                         // print tabletype specific thingies
102                         echo "<tr onmouseover='focusRow(this);' onmouseout='blurRow(this);'>";
103                         call_user_func("listplug_table_" . $template['content'] , $template,  'BODY');
104                         echo "</tr>";
105                         break;
106                 case 'FOOT':
107                         call_user_func("listplug_table_" . $template['content'] , $template,  'FOOT');
108                         echo "</tbody></table>";
109                         break;
110         }
111 }
112
113 function listplug_table_memberlist($template, $type) {
114         switch($type) {
115                 case 'HEAD':
116                         echo '<th>' . _LIST_MEMBER_NAME . '</th><th>' . _LIST_MEMBER_RNAME . '</th><th>' . _LIST_MEMBER_URL . '</th><th>' . _LIST_MEMBER_ADMIN;
117                         help('superadmin');
118                         echo "</th><th>" . _LIST_MEMBER_LOGIN;
119                         help('canlogin');
120                         echo "</th><th colspan='2'>" . _LISTS_ACTIONS. "</th>";
121                         break;
122                 case 'BODY':
123                         $current = $template['current'];
124
125                         echo '<td>';
126                         $id = listplug_nextBatchId();
127                         echo '<input type="checkbox" id="batch',$id,'" name="batch[',$id,']" value="',$current->mnumber,'" />';
128                         echo '<label for="batch',$id,'">';
129                         echo "<a href='mailto:", htmlspecialchars($current->memail), "' tabindex='".$template['tabindex']."'>", htmlspecialchars($current->mname), "</a>";
130                         echo '</label>';
131                         echo '</td>';
132                         echo '<td>', htmlspecialchars($current->mrealname), '</td>';
133                         echo "<td><a href='", htmlspecialchars($current->murl), "' tabindex='", $template['tabindex'] , "'>", htmlspecialchars($current->murl), "</a></td>";
134                         echo '<td>', ($current->madmin ? _YES : _NO),'</td>';
135                         echo '<td>', ($current->mcanlogin ? _YES : _NO), '</td>';
136                         echo "<td><a href='index.php?action=memberedit&amp;memberid=$current->mnumber' tabindex='".$template['tabindex']."'>"._LISTS_EDIT."</a></td>";
137                         echo "<td><a href='index.php?action=memberdelete&amp;memberid=$current->mnumber' tabindex='".$template['tabindex']."'>"._LISTS_DELETE."</a></td>";
138                         break;
139         }
140 }
141
142 function listplug_table_teamlist($template, $type) {
143         global $manager;
144         switch($type) {
145                 case 'HEAD':
146                         echo "<th>"._LIST_MEMBER_NAME."</th><th>"._LIST_MEMBER_RNAME."</th><th>"._LIST_TEAM_ADMIN;
147                         help('teamadmin');
148                         echo "</th><th colspan='2'>"._LISTS_ACTIONS."</th>";
149                         break;
150                 case 'BODY':
151                         $current = $template['current'];
152
153                         echo '<td>';
154                         $id = listplug_nextBatchId();
155                         echo '<input type="checkbox" id="batch',$id,'" name="batch[',$id,']" value="',$current->tmember,'" />';
156                         echo '<label for="batch',$id,'">';
157                         echo "<a href='mailto:", htmlspecialchars($current->memail), "' tabindex='".$template['tabindex']."'>", htmlspecialchars($current->mname), "</a>";
158                         echo '</label>';
159                         echo '</td>';
160                         echo '<td>', htmlspecialchars($current->mrealname), '</td>';
161                         echo '<td>', ($current->tadmin ? _YES : _NO) , '</td>';
162                         echo "<td><a href='index.php?action=teamdelete&amp;memberid=$current->tmember&amp;blogid=$current->tblog' tabindex='".$template['tabindex']."'>"._LISTS_DELETE."</a></td>";
163
164                         $url = 'index.php?action=teamchangeadmin&memberid=' . intval($current->tmember) . '&blogid=' . intval($current->tblog);
165                         $url = $manager->addTicketToUrl($url);
166                         echo "<td><a href='",htmlspecialchars($url),"' tabindex='".$template['tabindex']."'>"._LIST_TEAM_CHADMIN."</a></td>";
167                         break;
168         }
169 }
170
171 function listplug_table_pluginlist($template, $type) {
172         global $manager;
173         switch($type) {
174                 case 'HEAD':
175                         echo '<th>'._LISTS_INFO.'</th><th>'._LISTS_DESC.'</th>';
176                         echo '<th style="white-space:nowrap">'._LISTS_ACTIONS.'</th>';
177                         break;
178                 case 'BODY':
179                         $current = $template['current'];
180
181                         $plug =& $manager->getPlugin($current->pfile);
182                         if ($plug) {
183                                 echo '<td>';
184                                         echo '<strong>' , htmlspecialchars($plug->getName()) , '</strong><br />';
185                                         echo _LIST_PLUGS_AUTHOR, ' ' , htmlspecialchars($plug->getAuthor()) , '<br />';
186                                         echo _LIST_PLUGS_VER, ' ' , htmlspecialchars($plug->getVersion()) , '<br />';
187                                         if ($plug->getURL())
188                                         echo '<a href="',htmlspecialchars($plug->getURL()),'" tabindex="'.$template['tabindex'].'">',_LIST_PLUGS_SITE,'</a><br />';
189                                         echo '<a href="',htmlspecialchars($plug->getURL()),'" tabindex="'.$template['tabindex'].'">'.htmlspecialchars($plug->getURL()),'</a><br />';
190                                 echo '</td>';
191                                 echo '<td>';
192                                         echo _LIST_PLUGS_DESC .'<br/>'. encode_desc($plug->getDescription());
193                                         if (sizeof($plug->getEventList()) > 0) {
194                                                 echo '<br /><br />',_LIST_PLUGS_SUBS,'<br />',htmlspecialchars(implode($plug->getEventList(),', '));
195                                                 // check the database to see if it is up-to-date and notice the user if not
196                                         }
197                                         if (!$plug->subscribtionListIsUptodate()) {
198                                                 echo '<br /><br /><strong>',_LIST_PLUG_SUBS_NEEDUPDATE,'</strong>';
199                                         }
200                                         if (sizeof($plug->getPluginDep()) > 0) {
201                                                 echo '<br /><br />',_LIST_PLUGS_DEP,'<br />',htmlspecialchars(implode($plug->getPluginDep(),', '));
202                                         }
203 // <add by shizuki>
204                                 // check dependency require
205                                 $req = array();
206                                 $res = sql_query('SELECT pfile FROM ' . sql_table('plugin'));
207                                 while($o = mysql_fetch_object($res)) {
208                                         $preq =& $manager->getPlugin($o->pfile);
209                                         if ($plug) {
210                                                 $depList = $preq->getPluginDep();
211                                                 foreach ($depList as $depName) {
212                                                         if ($current->pfile == $depName) {
213                                                                 $req[] = $o->pfile;
214                                                         }
215                                                 }
216                                         }
217                                 }
218                                 if (count($req) > 0) {
219                                         echo '<h4 class="plugin_dependreq_title">' . _LIST_PLUGS_DEPREQ . "</h4>\n";
220                                         echo '<p class="plugin_dependreq_text">';
221                                         echo htmlspecialchars(implode(', ', $req), ENT_QUOTES);
222                                         echo "</p>\n";
223                                 }
224 // </add by shizuki>
225                                 echo '</td>';
226                         } else {
227                                 echo '<td colspan="2">' . sprintf(_PLUGINFILE_COULDNT_BELOADED, htmlspecialchars($current->pfile, ENT_QUOTES)) . '</td>';
228                         }
229                         echo '<td>';
230
231                                 $baseUrl = 'index.php?plugid=' . intval($current->pid) . '&action=';
232                                 $url = $manager->addTicketToUrl($baseUrl . 'pluginup');
233                                 echo "<a href='",htmlspecialchars($url),"' tabindex='".$template['tabindex']."'>",_LIST_PLUGS_UP,"</a>";
234                                 $url = $manager->addTicketToUrl($baseUrl . 'plugindown');
235                                 echo "<br /><a href='",htmlspecialchars($url),"' tabindex='".$template['tabindex']."'>",_LIST_PLUGS_DOWN,"</a>";
236                                 echo "<br /><a href='index.php?action=plugindelete&amp;plugid=$current->pid' tabindex='".$template['tabindex']."'>",_LIST_PLUGS_UNINSTALL,"</a>";
237                                 if ($plug && ($plug->hasAdminArea() > 0))
238                                         echo "<br /><a href='".htmlspecialchars($plug->getAdminURL())."'  tabindex='".$template['tabindex']."'>",_LIST_PLUGS_ADMIN,"</a>";
239                                 if ($plug && ($plug->supportsFeature('HelpPage') > 0))
240                                         echo "<br /><a href='index.php?action=pluginhelp&amp;plugid=$current->pid'  tabindex='".$template['tabindex']."'>",_LIST_PLUGS_HELP,"</a>";
241                                 if (quickQuery('SELECT COUNT(*) AS result FROM '.sql_table('plugin_option_desc').' WHERE ocontext=\'global\' and opid='.$current->pid) > 0)
242                                         echo "<br /><a href='index.php?action=pluginoptions&amp;plugid=$current->pid'  tabindex='".$template['tabindex']."'>",_LIST_PLUGS_OPTIONS,"</a>";
243                         echo '</td>';
244                         break;
245         }
246 }
247
248 function listplug_table_plugoptionlist($template, $type) {
249         global $manager;
250         switch($type) {
251                 case 'HEAD':
252                         echo '<th>'._LISTS_INFO.'</th><th>'._LISTS_VALUE.'</th>';
253                         break;
254                 case 'BODY':
255                         $current = $template['current'];
256                         listplug_plugOptionRow($current);
257                         break;
258                 case 'FOOT':
259                         ?>
260                         <tr>
261                                 <th colspan="2"><?php echo _PLUGS_SAVE?></th>
262                         </tr><tr>
263                                 <td><?php echo _PLUGS_SAVE?></td>
264                                 <td><input type="submit" value="<?php echo _PLUGS_SAVE?>" /></td>
265                         </tr>
266                         <?php                   break;
267         }
268 }
269
270 function listplug_plugOptionRow($current) {
271         $varname = 'plugoption['.$current['oid'].']['.$current['contextid'].']';
272         // retreive the optionmeta
273         $meta = NucleusPlugin::getOptionMeta($current['typeinfo']);
274
275         // only if it is not a hidden option write the controls to the page
276         if (@$meta['access'] != 'hidden') {
277                 echo '<td>',htmlspecialchars($current['description']?$current['description']:$current['name']),'</td>';
278                 echo '<td>';
279                 switch($current['type']) {
280                         case 'yesno':
281                                 ADMIN::input_yesno($varname, $current['value'], 0, 'yes', 'no');
282                                 break;
283                         case 'password':
284                                 echo '<input type="password" size="40" maxlength="128" name="',htmlspecialchars($varname),'" value="',htmlspecialchars($current['value']),'" />';
285                                 break;
286                         case 'select':
287                                 echo '<select name="'.htmlspecialchars($varname).'">';
288                                 $aOptions = NucleusPlugin::getOptionSelectValues($current['typeinfo']);
289                                 $aOptions = explode('|', $aOptions);
290                                 for ($i=0; $i<(count($aOptions)-1); $i+=2) {
291                                         echo '<option value="'.htmlspecialchars($aOptions[$i+1]).'"';
292                                         if ($aOptions[$i+1] == $current['value'])
293                                                 echo ' selected="selected"';
294                                         echo '>'.htmlspecialchars($aOptions[$i]).'</option>';
295                                 }
296                                 echo '</select>';
297                                 break;
298                         case 'textarea':
299                                 //$meta = NucleusPlugin::getOptionMeta($current['typeinfo']);
300                                 echo '<textarea class="pluginoption" cols="30" rows="5" name="',htmlspecialchars($varname),'"';
301                                 if (@$meta['access'] == 'readonly') {
302                                         echo ' readonly="readonly"';
303                                 }
304                                 echo '>',htmlspecialchars($current['value']),'</textarea>';
305                                 break;
306                         case 'text':
307                         default:
308                                 //$meta = NucleusPlugin::getOptionMeta($current['typeinfo']);
309
310                                 echo '<input type="text" size="40" maxlength="128" name="',htmlspecialchars($varname),'" value="',htmlspecialchars($current['value']),'"';
311                                 if (@$meta['datatype'] == 'numerical') {
312                                         echo ' onkeyup="checkNumeric(this)" onblur="checkNumeric(this)"';
313                                 }
314                                 if (@$meta['access'] == 'readonly') {
315                                         echo ' readonly="readonly"';
316                                 }
317                                 echo ' />';
318                 }
319                 echo @$current['extra'];
320                 echo '</td>';
321         }
322 }
323
324 function listplug_table_itemlist($template, $type) {
325         $cssclass = null;
326
327         switch($type) {
328                 case 'HEAD':
329                         echo "<th>"._LIST_ITEM_INFO."</th><th>"._LIST_ITEM_CONTENT."</th><th style=\"white-space:nowrap\" colspan='1'>"._LISTS_ACTIONS."</th>";
330                         break;
331                 case 'BODY':
332                         $current = $template['current'];
333                         $current->itime = strtotime($current->itime);   // string -> unix timestamp
334
335                         if ($current->idraft == 1)
336                                 $cssclass = "class='draft'";
337
338                         // (can't use offset time since offsets might vary between blogs)
339                         if ($current->itime > $template['now'])
340                                 $cssclass = "class='future'";
341
342                         echo "<td $cssclass>",_LIST_ITEM_BLOG,' ', htmlspecialchars($current->bshortname);
343                         echo "    <br />",_LIST_ITEM_CAT,' ', htmlspecialchars($current->cname);
344                         echo "    <br />",_LIST_ITEM_AUTHOR, ' ', htmlspecialchars($current->mname);
345                         echo "    <br />",_LIST_ITEM_DATE," " . date("Y-m-d",$current->itime);
346                         echo "<br />",_LIST_ITEM_TIME," " . date("H:i",$current->itime);
347                         echo "</td>";
348                         echo "<td $cssclass>";
349
350                         $id = listplug_nextBatchId();
351
352                         echo '<input type="checkbox" id="batch',$id,'" name="batch[',$id,']" value="',$current->inumber,'" />';
353                         echo '<label for="batch',$id,'">';
354                         echo "<b>" . htmlspecialchars(strip_tags($current->ititle)) . "</b>";
355                         echo '</label>';
356                         echo "<br />";
357
358
359                         $current->ibody = strip_tags($current->ibody);
360                         $current->ibody = htmlspecialchars(shorten($current->ibody,300,'...'));
361
362                         $COMMENTS = new COMMENTS($current->inumber);
363                         echo "$current->ibody</td>";
364                         echo "<td  style=\"white-space:nowrap\" $cssclass>";
365                         echo    "<a href='index.php?action=itemedit&amp;itemid=$current->inumber'>"._LISTS_EDIT."</a>";
366                         // evaluate amount of comments for the item
367                         $camount = $COMMENTS->amountComments();
368                         if ($camount>0) {
369                                 echo    "<br /><a href='index.php?action=itemcommentlist&amp;itemid=$current->inumber'>".sprintf(_LIST_ITEM_COMMENTS, $COMMENTS->amountComments())."</a>";
370                         }
371                         else {
372                                 echo "<br />"._LIST_ITEM_NOCONTENT;
373                         }
374                         echo    "<br /><a href='index.php?action=itemmove&amp;itemid=$current->inumber'>"._LISTS_MOVE."</a>";
375                         echo    "<br /><a href='index.php?action=itemdelete&amp;itemid=$current->inumber'>"._LISTS_DELETE."</a>";
376                         echo "</td>";
377                         break;
378         }
379 }
380
381 // for batch operations: generates the index numbers for checkboxes
382 function listplug_nextBatchId() {
383         static $id = 0;
384         return $id++;
385 }
386
387 function listplug_table_commentlist($template, $type) {
388         switch($type) {
389                 case 'HEAD':
390                         echo "<th>"._LISTS_INFO."</th><th>"._LIST_COMMENT."</th><th colspan='3'>"._LISTS_ACTIONS."</th>";
391                         break;
392                 case 'BODY':
393                         $current = $template['current'];
394                         $current->ctime = strtotime($current->ctime);   // string -> unix timestamp
395
396                         echo '<td>';
397                         echo date("Y-m-d@H:i",$current->ctime);
398                         echo '<br />';
399                         if ($current->mname)
400                                 echo htmlspecialchars($current->mname) ,' ', _LIST_COMMENTS_MEMBER;
401                         else
402                                 echo htmlspecialchars($current->cuser);
403                         if ($current->cmail != '') {
404                                 echo '<br />';
405                                 echo htmlspecialchars($current->cmail);
406                         }
407                         if ($current->cemail != '') {
408                                 echo '<br />';
409                                 echo htmlspecialchars($current->cemail);
410                         }
411                         echo '</td>';
412
413                         $current->cbody = strip_tags($current->cbody);
414                         $current->cbody = htmlspecialchars(shorten($current->cbody, 300, '...'));
415
416                         echo '<td>';
417                         $id = listplug_nextBatchId();
418                         echo '<input type="checkbox" id="batch',$id,'" name="batch[',$id,']" value="',$current->cnumber,'" />';
419                         echo '<label for="batch',$id,'">';
420                         echo $current->cbody;
421                         echo '</label>';
422                         echo '</td>';
423
424                         echo "<td style=\"white-space:nowrap\"><a href='index.php?action=commentedit&amp;commentid=$current->cnumber'>"._LISTS_EDIT."</a></td>";
425                         echo "<td style=\"white-space:nowrap\"><a href='index.php?action=commentdelete&amp;commentid=$current->cnumber'>"._LISTS_DELETE."</a></td>";
426                         if ($template['canAddBan'])
427                                 echo "<td style=\"white-space:nowrap\"><a href='index.php?action=banlistnewfromitem&amp;itemid=$current->citem&amp;ip=", htmlspecialchars($current->cip), "' title='", htmlspecialchars($current->chost), "'>"._LIST_COMMENT_BANIP."</a></td>";
428                         break;
429         }
430 }
431
432
433 function listplug_table_bloglist($template, $type) {
434         switch($type) {
435                 case 'HEAD':
436                         echo "<th>" . _NAME . "</th><th colspan='7'>" ._LISTS_ACTIONS. "</th>";
437                         break;
438                 case 'BODY':
439                         $current = $template['current'];
440
441                         echo "<td title='blogid:$current->bnumber shortname:$current->bshortname'><a href='$current->burl'><img src='images/globe.gif' width='13' height='13' alt='". _BLOGLIST_TT_VISIT."' /></a> " . htmlspecialchars($current->bname) . "</td>";
442                         echo "<td><a href='index.php?action=createitem&amp;blogid=$current->bnumber' title='" . _BLOGLIST_TT_ADD ."'>" . _BLOGLIST_ADD . "</a></td>";
443                         echo "<td><a href='index.php?action=itemlist&amp;blogid=$current->bnumber' title='". _BLOGLIST_TT_EDIT."'>". _BLOGLIST_EDIT."</a></td>";
444                         echo "<td><a href='index.php?action=blogcommentlist&amp;blogid=$current->bnumber' title='". _BLOGLIST_TT_COMMENTS."'>". _BLOGLIST_COMMENTS."</a></td>";
445                         echo "<td><a href='index.php?action=bookmarklet&amp;blogid=$current->bnumber' title='". _BLOGLIST_TT_BMLET."'>". _BLOGLIST_BMLET . "</a></td>";
446
447                         if ($current->tadmin == 1) {
448                                 echo "<td><a href='index.php?action=blogsettings&amp;blogid=$current->bnumber' title='" . _BLOGLIST_TT_SETTINGS . "'>" ._BLOGLIST_SETTINGS. "</a></td>";
449                                 echo "<td><a href='index.php?action=banlist&amp;blogid=$current->bnumber' title='" . _BLOGLIST_TT_BANS. "'>". _BLOGLIST_BANS."</a></td>";
450                         }
451
452                         if ($template['superadmin']) {
453                                 echo "<td><a href='index.php?action=deleteblog&amp;blogid=$current->bnumber' title='". _BLOGLIST_TT_DELETE."'>" ._BLOGLIST_DELETE. "</a></td>";
454                         }
455
456
457
458                         break;
459         }
460 }
461
462 function listplug_table_shortblognames($template, $type) {
463         switch($type) {
464                 case 'HEAD':
465                         echo "<th>" . _EBLOG_SHORTNAME . "</th><th>" . _EBLOG_NAME. "</th>";
466                         break;
467                 case 'BODY':
468                         $current = $template['current'];
469
470                         echo '<td>' , htmlspecialchars($current->bshortname) , '</td>';
471                         echo '<td>' , htmlspecialchars($current->bname) , '</td>';
472
473                         break;
474         }
475 }
476
477 function listplug_table_shortnames($template, $type) {
478         switch($type) {
479                 case 'HEAD':
480                         echo "<th>" . _NAME . "</th><th>" . _LISTS_DESC. "</th>";
481                         break;
482                 case 'BODY':
483                         $current = $template['current'];
484
485                         echo '<td>' , htmlspecialchars($current->name) , '</td>';
486                         echo '<td>' , htmlspecialchars($current->description) , '</td>';
487
488                         break;
489         }
490 }
491
492
493 function listplug_table_categorylist($template, $type) {
494         switch($type) {
495                 case 'HEAD':
496                         echo "<th>"._LISTS_NAME."</th><th>"._LISTS_DESC."</th><th colspan='2'>"._LISTS_ACTIONS."</th>";
497                         break;
498                 case 'BODY':
499                         $current = $template['current'];
500
501                         echo '<td>';
502                         $id = listplug_nextBatchId();
503                         echo '<input type="checkbox" id="batch',$id,'" name="batch[',$id,']" value="',$current->catid,'" />';
504                         echo '<label for="batch',$id,'">';
505                         echo htmlspecialchars($current->cname);
506                         echo '</label>';
507                         echo '</td>';
508
509                         echo '<td>', htmlspecialchars($current->cdesc), '</td>';
510                         echo "<td><a href='index.php?action=categorydelete&amp;blogid=$current->cblog&amp;catid=$current->catid' tabindex='".$template['tabindex']."'>"._LISTS_DELETE."</a></td>";
511                         echo "<td><a href='index.php?action=categoryedit&amp;blogid=$current->cblog&amp;catid=$current->catid' tabindex='".$template['tabindex']."'>"._LISTS_EDIT."</a></td>";
512
513                         break;
514         }
515 }
516
517
518 function listplug_table_templatelist($template, $type) {
519         global $manager;
520         switch($type) {
521                 case 'HEAD':
522                         echo "<th>"._LISTS_NAME."</th><th>"._LISTS_DESC."</th><th colspan='3'>"._LISTS_ACTIONS."</th>";
523                         break;
524                 case 'BODY':
525                         $current = $template['current'];
526
527                         echo "<td>" , htmlspecialchars($current->tdname), "</td>";
528                         echo "<td>" , htmlspecialchars($current->tddesc), "</td>";
529                         echo "<td style=\"white-space:nowrap\"><a href='index.php?action=templateedit&amp;templateid=$current->tdnumber' tabindex='".$template['tabindex']."'>"._LISTS_EDIT."</a></td>";
530
531                         $url = $manager->addTicketToUrl('index.php?action=templateclone&templateid=' . intval($current->tdnumber));
532                         echo "<td style=\"white-space:nowrap\"><a href='",htmlspecialchars($url),"' tabindex='".$template['tabindex']."'>"._LISTS_CLONE."</a></td>";
533                         echo "<td style=\"white-space:nowrap\"><a href='index.php?action=templatedelete&amp;templateid=$current->tdnumber' tabindex='".$template['tabindex']."'>"._LISTS_DELETE."</a></td>";
534
535                         break;
536         }
537 }
538
539 function listplug_table_skinlist($template, $type) {
540         global $CONF, $DIR_SKINS, $manager;
541         switch($type) {
542                 case 'HEAD':
543                         echo "<th>"._LISTS_NAME."</th><th>"._LISTS_DESC."</th><th colspan='3'>"._LISTS_ACTIONS."</th>";
544                         break;
545                 case 'BODY':
546                         $current = $template['current'];
547
548                         echo '<td>';
549
550                         // use a special style for the default skin
551                         if ($current->sdnumber == $CONF['BaseSkin']) {
552                                 echo '<strong>',htmlspecialchars($current->sdname),'</strong>';
553                         } else {
554                                 echo htmlspecialchars($current->sdname);
555                         }
556
557                         echo '<br /><br />';
558                         echo _LISTS_TYPE ,': ' , htmlspecialchars($current->sdtype);
559                         echo '<br />', _LIST_SKINS_INCMODE , ' ' , (($current->sdincmode=='skindir') ?_PARSER_INCMODE_SKINDIR:_PARSER_INCMODE_NORMAL);
560                         if ($current->sdincpref) echo '<br />' , _LIST_SKINS_INCPREFIX , ' ', htmlspecialchars($current->sdincpref);
561
562                         // add preview image when present
563                         if ($current->sdincpref && @file_exists($DIR_SKINS . $current->sdincpref . 'preview.png'))
564                         {
565                                 echo '<br /><br />';
566
567                                 $hasEnlargement = @file_exists($DIR_SKINS . $current->sdincpref . 'preview-large.png');
568                                 if ($hasEnlargement)
569                                         echo '<a href="',$CONF['SkinsURL'], htmlspecialchars($current->sdincpref),'preview-large.png" title="' . _LIST_SKIN_PREVIEW_VIEWLARGER . '">';
570
571                                 $imgAlt = sprintf(_LIST_SKIN_PREVIEW, htmlspecialchars($current->sdname, ENT_QUOTES));
572                                 echo '<img class="skinpreview" src="',$CONF['SkinsURL'], htmlspecialchars($current->sdincpref),'preview.png" width="100" height="75" alt="' . $imgAlt . '" />';
573
574                                 if ($hasEnlargement)
575                                         echo '</a>';
576
577                                 if (@file_exists($DIR_SKINS . $current->sdincpref . 'readme.html'))
578                                 {
579                                         $url         = $CONF['SkinsURL'] . htmlspecialchars($current->sdincpref, ENT_QUOTES) . 'readme.html';
580                                         $readmeTitle = sprintf(_LIST_SKIN_README, htmlspecialchars($current->sdname, ENT_QUOTES));
581                                         echo '<br /><a href="' . $url . '" title="' . $readmeTitle . '">' . _LIST_SKIN_README_TXT . '</a>';
582                                 }
583
584
585                         }
586
587                         echo "</td>";
588
589
590                         echo '<td class="availableSkinTypes">' . htmlspecialchars($current->sddesc);
591                                 // show list of defined parts
592                                 $r = sql_query('SELECT stype FROM '.sql_table('skin').' WHERE sdesc='.$current->sdnumber . ' ORDER BY stype');
593                                 $types = array();
594                                 while ($o = mysql_fetch_object($r))
595                                         array_push($types,$o->stype);
596                                 if (sizeof($types) > 0) {
597                                         $friendlyNames = SKIN::getFriendlyNames();
598                                         for ($i=0;$i<sizeof($types);$i++) {
599                                                 $type = $types[$i];
600                                                 if (in_array($type, array('index', 'item', 'archivelist', 'archive', 'search', 'error', 'member', 'imagepopup'))) {
601                                                         $types[$i] = '<li> <a href="index.php?action=skinedittype&amp;skinid='.$current->sdnumber.'&amp;type='.$type.'" tabindex="'.$template['tabindex'].'">' . htmlspecialchars($friendlyNames[$type]) . helpHtml('skinpart'.$type) . "</a></li>";
602                                                 } else {
603                                                         $types[$i] = '<li> <a href="index.php?action=skinedittype&amp;skinid='.$current->sdnumber.'&amp;type='.$type.'" tabindex="'.$template['tabindex'].'">' . htmlspecialchars($friendlyNames[$type]) . helpHtml('skinpartspecial') . "</a></li>";
604                                                 }
605                                         }
606                                         echo '<br /><br />',_LIST_SKINS_DEFINED,' <ul>',implode($types,'') ,'</ul>';
607                                 }
608                         echo "</td>";
609                         echo "<td style=\"white-space:nowrap\"><a href='index.php?action=skinedit&amp;skinid=$current->sdnumber' tabindex='".$template['tabindex']."'>"._LISTS_EDIT."</a></td>";
610
611                         $url = $manager->addTicketToUrl('index.php?action=skinclone&skinid=' . intval($current->sdnumber));
612                         echo "<td style=\"white-space:nowrap\"><a href='",htmlspecialchars($url),"' tabindex='".$template['tabindex']."'>"._LISTS_CLONE."</a></td>";
613                         echo "<td style=\"white-space:nowrap\"><a href='index.php?action=skindelete&amp;skinid=$current->sdnumber' tabindex='".$template['tabindex']."'>"._LISTS_DELETE."</a></td>";
614
615                         break;
616         }
617 }
618
619 function listplug_table_draftlist($template, $type) {
620         switch($type) {
621                 case 'HEAD':
622                         echo "<th>"._LISTS_BLOG."</th><th>"._LISTS_TITLE."</th><th colspan='2'>"._LISTS_ACTIONS."</th>";
623                         break;
624                 case 'BODY':
625                         $current = $template['current'];
626
627                         echo '<td>', htmlspecialchars($current->bshortname) , '</td>';
628                         echo '<td>', htmlspecialchars(strip_tags($current->ititle)) , '</td>';
629                         echo "<td><a href='index.php?action=itemedit&amp;itemid=$current->inumber'>"._LISTS_EDIT."</a></td>";
630                         echo "<td><a href='index.php?action=itemdelete&amp;itemid=$current->inumber'>"._LISTS_DELETE."</a></td>";
631
632                         break;
633         }
634 }
635
636
637 function listplug_table_actionlist($template, $type) {
638         switch($type) {
639                 case 'HEAD':
640                         echo '<th>'._LISTS_TIME.'</th><th>'._LIST_ACTION_MSG.'</th>';
641                         break;
642                 case 'BODY':
643                         $current = $template['current'];
644
645                         echo '<td>' , htmlspecialchars($current->timestamp), '</td>';
646                         echo '<td>' , htmlspecialchars($current->message), '</td>';
647
648                         break;
649         }
650 }
651
652 function listplug_table_banlist($template, $type) {
653         switch($type) {
654                 case 'HEAD':
655                         echo '<th>'._LIST_BAN_IPRANGE.'</th><th>'. _LIST_BAN_REASON.'</th><th>'._LISTS_ACTIONS.'</th>';
656                         break;
657                 case 'BODY':
658                         $current = $template['current'];
659
660                         echo '<td>' , htmlspecialchars($current->iprange) , '</td>';
661                         echo '<td>' , htmlspecialchars($current->reason) , '</td>';
662                         echo "<td><a href='index.php?action=banlistdelete&amp;blogid=", intval($current->blogid) , "&amp;iprange=" , htmlspecialchars($current->iprange) , "'>",_LISTS_DELETE,"</a></td>";
663                         break;
664         }
665 }
666
667 ?>