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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
<?php
/**
* @version $Header$
* @package bitweaver
*/
global $gBitSmarty, $gBlog, $gBitSystem, $moduleParams, $gBitUser;
if( !empty( $moduleParams ) ) {
extract( $moduleParams );
}
include_once( BLOGS_PKG_PATH.'BitBlog.php' );
include_once( BLOGS_PKG_PATH.'lookup_post_inc.php' );
$blogPost = new BitBlogPost();
if( empty( $gContent )) {
$gBitSmarty->assignByRef( 'gContent', $blogPost );
}
if( $gBitUser->hasPermission( 'p_blog_posts_read_future' ) || $gBitUser->isAdmin() ) {
$futuresHash = array();
$futuresHash['max_records'] = !empty( $_REQUEST['max_records'] ) ? $_REQUEST['max_records'] : $gBitSystem->getConfig( 'blog_posts_max_list' );
$futuresHash['get_future'] = TRUE;
if( empty( $futuresHash['user_id'] )) {
if( !empty( $gQueryUserId )) {
$futuresHash['user_id'] = $gQueryUserId;
} elseif ( isset($_REQUEST['user_id']) ) {
$futuresHash['user_id'] = $_REQUEST['user_id'];
}
}
// prevent anything lower than publicly visible be displayed in blog roll
$futuresHash['enforce_status'] = TRUE;
$futuresHash['min_owner_status_id'] = 0;
$futures = $blogPost->getFutureList( $futuresHash );
$gBitSmarty->assign( 'futures', $futures['data']);
} else {
$_REQUEST['max_records'] = $gBitSystem->getConfig( 'blog_posts_max_list' );
}
// various options might be set in module_params
/*
$listHash = $module_params;
$listHash = array(
'max_records' => $module_rows,
'parse_data' => TRUE,
'load_comments' => TRUE,
);
*/
$listHash = array();
if( !empty( $moduleParams )) {
$listHash = array_merge( $_REQUEST, $moduleParams['module_params'] );
$listHash['max_records'] = $module_rows;
//$listHash['parse_data'] = TRUE;
//$listHash['load_comments'] = TRUE;
} else {
$listHash = $_REQUEST;
}
BitUser::userCollection( $_REQUEST, $listHash );
if ( empty( $listHash['sort_mode'] ) ){
$listHash['sort_mode'] = 'sort_date_desc';
}
if( !$gBitUser->hasPermission( 'p_blogs_admin' )) {
$listHash['content_perm_name'] = 'p_blogs_view';
}
$paginationPath = BLOGS_PKG_URL.'index.php';
/* if a blog_id is passed from the modle settings then
* we want to push to the view page if the user looks for older posts
* i.e. this is for pagination
*/
if ( !empty( $module_params ) && !empty( $module_params['blog_id'] ) ){
$_template->tpl_vars['blogId'] = new Smarty_variable( $module_params['blog_id'] );
$paginationPath = BLOGS_PKG_URL.'view.php';
}
// prevent anything lower than publicly visible be displayed in blog roll
$listHash['enforce_status'] = TRUE;
$listHash['min_owner_status_id'] = 0;
/* I think this is right - usually we pass in $_REQUEST
* but in this case I pass in the listHash because
* this is in a module - change it if its a mistake wjames5
*/
$blogPost->invokeServices( 'content_list_function', $listHash );
$blogPosts = $blogPost->getList( $listHash );
$_template->tpl_vars['paginationPath'] = new Smarty_variable( $paginationPath );
$_template->tpl_vars['gQueryUserId'] = new Smarty_variable( $listHash['user_id'] );
$_template->tpl_vars['blogPosts'] = new Smarty_variable( $blogPosts );
$_template->tpl_vars['listInfo'] = new Smarty_variable( $listHash );
$_template->tpl_vars['descriptionLength'] = new Smarty_variable( $gBitSystem->getConfig( 'blog_posts_description_length', 500 ));
$_template->tpl_vars['showDescriptionsOnly'] = new Smarty_variable( TRUE );
$_template->tpl_vars['showBlogTitle'] = new Smarty_variable( 'y' );
$_template->tpl_vars['blogPostsFormat'] = new Smarty_variable( (empty($module_params['format']) ? 'full' : $module_params['format']) );
// unfortunately, the following feature pulls module parameters in from other modules
//$gBitSmarty->assign( 'centerTitle', $moduleParams['title'] );
?>
|