blob: d185c4fa95e1fd2437b6ad9a250916b27d8af416 (
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
|
<?php
global $gBitDb,$gQueryUser,$gBitSmarty;
require_once( FEED_PKG_PATH.'feed_lib.php' );
if( !empty($gQueryUser) ){
if( !empty( $moduleParams['module_params']['no_link_user'] ) ) {
$listHash['no_link_user'] = TRUE;
}
if( !empty( $moduleParams['module_rows'] ) ) {
$listHash['max_records'] = $moduleParams['module_rows'];
}
$listHash['user_id'] = $gQueryUser->mUserId;
$actions = feed_get_actions( $listHash );
$gBitSmarty->assign( 'actions', $actions);
}
?>
|