blob: ce6d0ceb22bbc3d71fcdb411d7ef6075afe1ecd3 (
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
34
|
<?php
// $Header$
/**
* Params:
* - content_type_guid : if set, show only those content_type_guid's
* @package liberty
* @subpackage modules
*/
use Bitweaver\KernelTools;
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 = KernelTools::tra( "Top Authors" ).': '.$gLibertySystem->getContentTypeName( $module_params['content_type_guid'] );
} else {
$gBitSmarty->assign( 'showContentType', true );
$title = KernelTools::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( 'modAuthors', $modAuthors );
?>
|