blob: 29e79f9bd336c4dd1d53ca9271e757d95480d8f2 (
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
|
<?php
/**
* @version $Header: /cvsroot/bitweaver/_bit_liberty/ajax_attachment_browser.php,v 1.9 2008/06/04 21:23:54 wjames5 Exp $
* @package liberty
* @subpackage functions
*/
/**
* required setup
*/
require_once( '../bit_setup_inc.php' );
global $gContent, $gBitSmarty;
$gContent = new LibertyMime();
if( isset( $_REQUEST['content_id'] )) {
$gContent->mContentId = $_REQUEST['content_id'];
}
$gBitSmarty->assign( 'attachmentBrowser', TRUE );
include_once( LIBERTY_PKG_PATH.'attachment_browser.php' );
if( isset( $_REQUEST['json'] )){
header( 'Content-type:application/json' );
$gBitSmarty->display( 'bitpackage:liberty/attachment_browser_json.tpl' );
} else {
echo $gBitSmarty->fetch( 'bitpackage:liberty/attachment_browser.tpl' );
}
?>
|