blob: 0036951b42c226394016ee9c01e12156d5d7c44b (
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
|
<?php
/**
* @version $Header$
* @package blogs
* @subpackage modules
*/
/**
* required setup
*/
use Bitweaver\Blogs\BitBlog;
use Bitweaver\Users\RoleUser;
global $gQueryUserId, $gBitThemes, $module_rows, $module_params;
$listHash['max_records'] = $module_rows;
$listHash['sort_mode'] = 'activity_desc';
RoleUser::userCollection( $module_params, $listHash );
$listHash['is_active'] = true;
$blog = new BitBlog();
$ranking = $blog->getList( $listHash );
if( !empty( $ranking ) ) {
$gBitSmarty->assign( 'modTopActiveBlogs', $ranking );
}
|