| 1 |
<?php |
<?php |
| 2 |
// $Id: workspace.module,v 1.23 2006/02/14 16:35:30 jvandyk Exp $ |
// $Id: workspace.module,v 1.24 2006/02/27 18:24:47 jvandyk Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* Implementation of hook_help(). |
* Implementation of hook_help(). |
| 262 |
} |
} |
| 263 |
|
|
| 264 |
if ($rows) { |
if ($rows) { |
| 265 |
$pager = theme('pager', NULL, $maxnodes, 0, tablesort_pager()); |
$pager = theme('pager', NULL, $maxnodes, 0); |
| 266 |
if (!empty($pager)) { |
if (!empty($pager)) { |
| 267 |
$rows[] = array(array('data' => $pager, 'colspan' => 8)); |
$rows[] = array(array('data' => $pager, 'colspan' => 8)); |
| 268 |
} |
} |
| 288 |
|
|
| 289 |
if ($rows) { |
if ($rows) { |
| 290 |
$output .= '<h3>' . t('Files') . '</h3>'; |
$output .= '<h3>' . t('Files') . '</h3>'; |
| 291 |
$pager = theme('pager', NULL, $maxfilenames, 2, tablesort_pager()); |
$pager = theme('pager', NULL, $maxfilenames, 2); |
| 292 |
if (!empty($pager)) { |
if (!empty($pager)) { |
| 293 |
$rows[] = array(array('data' => $pager, 'colspan' => 3)); |
$rows[] = array(array('data' => $pager, 'colspan' => 3)); |
| 294 |
} |
} |