blob: 219fd73c89b1d7a4ccafe1c463fdf553e6625af4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
/**
* @version $Header$
* @package bitweaver
*/
global $gBitSmarty, $gBitSystem, $gQueryUserId, $moduleParams, $gBitUser, $gLibertySystem, $gContent;
if( !empty( $moduleParams ) ) {
extract( $moduleParams );
}
$_REQUEST['output'] = "raw";
include_once( LIBERTY_PKG_PATH.'list_content.php' );
if ( isset($moduleParams['content_type_guid'] )){
$contentType = $gLibertySystem->getContentTypeName( $moduleParams['content_type_guid'] );
$gBitSmarty->assign( "contentType", $contentType );
}
?>
|