blob: 46230be2bc8c0f6067d1bdfa6dbef6575e1fbc0b (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
<?php
/**
* @version $Header: /cvsroot/bitweaver/_bit_articles/read.php,v 1.14 2006/02/18 19:16:04 bitweaver Exp $
* @package article
* @subpackage functions
*/
/**
* Initialization
*/
require_once( '../bit_setup_inc.php' );
require_once( ARTICLES_PKG_PATH.'BitArticle.php' );
$gBitSystem->verifyPackage( 'articles' );
if( !$gBitUser->hasPermission( 'bit_p_read_article' ) ) {
$gBitSmarty->assign( 'msg', tra( "Permission denied you cannot view this section" ) );
$gBitSystem->display( "error.tpl" );
die;
} elseif( !isset( $_REQUEST["article_id"] ) ) {
$gBitSmarty->assign( 'msg', tra( "No article indicated" ) );
$gBitSystem->display( "error.tpl" );
die;
}
include_once( ARTICLES_PKG_PATH.'lookup_article_inc.php' );
// additionally we need to check if this article is a submission and see if user has perms to view it.
if( $gContent->getField( 'status_id' ) != ARTICLE_STATUS_APPROVED && !( $gBitUser->hasPermission( 'bit_p_edit_submission' ) || $gBitUser->hasPermission( 'bit_p_edit_submission' ) || $gBitUser->hasPermission( 'bit_p_edit_submission' ) || $gBitUser->isAdmin() ) ) {
$gBitSmarty->assign( 'msg', tra( "Permission denied you cannot view this article" ) );
$gBitSystem->display( "error.tpl" );
die;
}
$gContent->addHit();
$gBitSmarty->assign_by_ref( 'article', $gContent->mInfo );
// get all the services that want to display something on this page
$displayHash = array( 'perm_name' => 'bit_p_view' );
$gContent->invokeServices( 'content_display_function', $displayHash );
$topics = BitArticleTopic::getTopicList();
$gBitSmarty->assign_by_ref( 'topics', $topics );
// Comments engine!
if( $gContent->mInfo['allow_comments'] == 'y' ) {
$comments_vars = Array( 'article' );
$comments_prefix_var='article:';
$comments_object_var='article';
$commentsParentId = $gContent->mContentId;
$comments_return_url = $_SERVER['PHP_SELF']."?article_id=".$_REQUEST['article_id'];
include_once( LIBERTY_PKG_PATH.'comments_inc.php' );
}
// Display the Index Template
$gBitSystem->display( 'bitpackage:articles/read_article.tpl', $gContent->mInfo['title'] );
?>
|