| 1 |
<?php |
<?php |
| 2 |
// $Id: drigg_ui.module,v 1.1.2.14.2.1 2008/11/07 01:00:12 mercmobily Exp $ |
// $Id: drigg_ui.module,v 1.1.2.14.2.2 2009/06/16 03:46:25 philbar Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* @file |
* @file |
| 464 |
|
|
| 465 |
#drupal_set_message($query); |
#drupal_set_message($query); |
| 466 |
|
|
| 467 |
global $is_front; |
$output = ''; |
|
if ($is_front) { |
|
|
$output = "<div class='drigg_published'"; |
|
|
} |
|
|
else { |
|
|
$output = "<div class='drigg_$action'"; |
|
|
} |
|
| 468 |
|
|
| 469 |
// How many items to be shown in each page? |
// How many items to be shown in each page? |
| 470 |
if (variable_get('drigg_hide_archived_menu', FALSE) && $action == 'archived') { |
if (variable_get('drigg_hide_archived_menu', FALSE) && $action == 'archived') { |
| 491 |
} |
} |
| 492 |
|
|
| 493 |
$output .= theme('pager', NULL, variable_get('drigg_items_in_main_page', 20), 0); |
$output .= theme('pager', NULL, variable_get('drigg_items_in_main_page', 20), 0); |
| 494 |
$output .= "</div>"; |
|
| 495 |
|
|
| 496 |
return $output; |
return $output; |
| 497 |
} |
} |