blob: 77d399ed64092d8181da5e3c08f2b3dda51e7761 (
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
27
28
29
30
31
32
33
|
<?php
// $Header: /cvsroot/bitweaver/_bit_liberty/modules/mod_top_authors.php,v 1.8 2010/04/17 04:56:46 wjames5 Exp $
/**
* Params:
* - content_type_guid : if set, show only those content_type_guid's
* @package liberty
* @subpackage modules
*/
global $gQueryUser, $gBitUser, $gLibertySystem, $moduleParams;
extract( $moduleParams );
/* this doesn't work as expected. without it, the user can fill in the title himself
if( empty( $module_title ) ) {
if( !empty( $module_params['content_type_guid'] ) && !empty( $gLibertySystem->mContentTypes[$module_params['content_type_guid']] ) ) {
$title = tra( "Top Authors" ).': '.$gLibertySystem->getContentTypeName( $module_params['content_type_guid'] );
} else {
$gBitSmarty->assign( 'showContentType', TRUE );
$title = tra( "Top Authors" );
}
$gBitSmarty->assign( 'moduleTitle', $title );
}
*/
$listHash = $_REQUEST;
if( !empty( $module_params['content_type_guid'] ) ) {
$listHash['content_type_guid'] = $module_params['content_type_guid'];
}
$listHash['max_records'] = $module_rows;
$modAuthors = $gBitUser->getAuthorList( $listHash );
$gBitSmarty->assign_by_ref( 'modAuthors', $modAuthors );
?>
|