blob: 08b55fc2ff4986a253851f969c853939fffde9f4 (
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
/**
* @version $Header$
* @package articles
* @subpackage functions
*/
/**
* Initialization
*/
global $gContent;
use Bitweaver\Articles\BitArticle;
use Bitweaver\Articles\BitArticleTopic;
// if we already have a gContent, we assume someone else created it for us, and has properly loaded everything up.
if( empty( $gContent ) || !is_object( $gContent ) ) {
$gContent = ( !empty( $_REQUEST['topic_id'] ) && is_numeric( $_REQUEST['topic_id'] ) ) ? new BitArticleTopic( $_REQUEST['topic_id'] ) : new BitArticleTopic();
if( empty( $gContent->mTopicId ) ) {
//handle legacy forms that use plain 'article' form variable name
} else {
$gContent->loadTopic();
}
$gBitSmarty->assign( 'gContent', $gContent );
}
|