summaryrefslogtreecommitdiff
path: root/lookup_article_inc.php
blob: 1b979eceb0b6e56f543cc1e687313530ceea8811 (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
<?php
/**
 * @version $Header: /cvsroot/bitweaver/_bit_articles/lookup_article_inc.php,v 1.8 2006/01/14 19:53:53 squareing Exp $
 * @package article
 * @subpackage functions
 */

/**
 * Initialization
 */
	global $gContent;
	require_once( ARTICLES_PKG_PATH.'BitArticle.php');
	require_once( LIBERTY_PKG_PATH.'lookup_content_inc.php' );

	// 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 ) ) {
		if (@BitBase::verifyId( $_REQUEST['article_id'] ) ) {
			$gContent = new BitArticle( $_REQUEST['article_id'] );
		} elseif( @BitBase::verifyId( $_REQUEST['content_id'] ) ) {
			$gContent = new BitArticle( NULL, $_REQUEST['content_id'] );
		} else {
			$gContent = new BitArticle();
			$gContent->mInfo['expire_date'] = strtotime( "+1 year" );
		}

		if( empty( $gContent->mArticleId ) && empty( $gContent->mContentId )  ) {
			//handle legacy forms that use plain 'article' form variable name
		} else {
			$gContent->load();
		}
		$gBitSmarty->clear_assign( 'gContent' );
		$gBitSmarty->assign( 'gContent', $gContent );
	}
?>