blob: 53f10f9a8852e2843a68078bf0a8941c56da01bb (
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
59
60
61
62
63
64
65
66
|
<?php
/**
* @version $Header$
* @package articles
* @subpackage functions
*/
/**
* Initialization
*/
require_once '../kernel/includes/setup_inc.php';
use Bitweaver\BitBase;
use Bitweaver\KernelTools;
use Bitweaver\Articles\BitArticleTopic;
$gBitSystem->verifyPackage( 'articles' );
if( !@BitBase::verifyId( $_REQUEST["article_id"] )) {
$gBitSystem->fatalError( KernelTools::tra( "No article indicated" ));
}
include_once( ARTICLES_PKG_INCLUDE_PATH.'lookup_article_inc.php' );
// Check if we actually have some content
if( !$gContent->isValid() ) {
$gBitSystem->fatalError( KernelTools::tra( 'Article cannot be found' ));
}
$gContent->verifyViewPermission();
// 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 ) {
if( !( $gContent->hasUserPermission( 'p_articles_update_submission' ) || $gContent->hasUserPermission( 'p_articles_approve_submission' ))) {
$gBitSystem->fatalError( KernelTools::tra( "Permission denied you cannot view this article" ));
}
}
// we also need to check and see if the article is future dated - we will display it if the user can edit it otherwise we pretend it does not exist.
$timestamp = $gBitSystem->getUTCTime();
if ( ($gContent->mInfo['publish_date'] > $timestamp) && !$gContent->hasUpdatePermission() ){
$gBitSystem->fatalError( KernelTools::tra( 'Article cannot be found' ));
}
$gContent->addHit();
$gBitSmarty->assign( 'article', $gContent->mInfo );
// get all the services that want to display something on this page
$displayHash = array( 'perm_name' => 'p_articles_read' );
$gContent->invokeServices( 'content_display_function', $displayHash );
$topics = BitArticleTopic::getTopicList();
$gBitSmarty->assign( '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['SCRIPT_NAME']."?article_id=".$_REQUEST['article_id'];
include_once( LIBERTY_PKG_INCLUDE_PATH.'comments_inc.php' );
}
// Display the Index Template
$gBitSystem->display( 'bitpackage:articles/read_article.tpl', @$gContent->mInfo['title'] , [ 'display_mode' => 'display' ]);
|