summaryrefslogtreecommitdiff
path: root/modules/mod_top_active_blogs.php
blob: 6a03f778ca8390b4efc67d1c20ce84480f7adf8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
/**
 * @version $Header$
 * @package blogs
 * @subpackage modules
 */

/**
 * required setup
 */
include_once( BLOGS_PKG_PATH.'BitBlog.php' );
//require_once( USERS_PKG_PATH.'BitUser.php' );

global $gQueryUserId, $gBitThemes, $module_rows, $module_params;

$listHash['max_records'] = $module_rows;
$listHash['sort_mode'] = 'activity_desc';
BitUser::userCollection( $module_params, $listHash );
$listHash['is_active'] = TRUE;

$blog = new BitBlog();
$ranking = $blog->getList( $listHash );
if( !empty( $ranking['data'] ) ) {
	$_template->tpl_vars['modTopActiveBlogs'] = new Smarty_variable( $ranking["data"]);
}
?>